image not displaying in flutter app. But I got some errors in debug console.
I/FlutterActivityDelegate(22603): onResume setting current activity to this I/Fl
Refer https://api.flutter.dev/flutter/painting/AssetImage-class.html
Add assets images in pubspec.yaml file and in the asset mention the path from images and it works fine.
new AssetImage("images/logo.png")
For example
CircleAvatar( radius: 80, backgroundImage: AssetImage('images/logo.png'), ),