A new Flutter project which explains how to use images in Flutter.
Create a folder named assets and store all the images in that folder.
Go to the pubspec.yaml file and make the following changes:
assets: - assets/puppy.jpeg
Then after this your image is usable in the app.
Follow the code in the class ImageAssets to implement an Image Widget in your app.