How to pass image asset in imageprovider type? How to pass image asset in imageprovider type? dart dart

How to pass image asset in imageprovider type?


Try changing the Image.asset(AppAsset.background) to as follows

Image.asset(AppAsset.background).image

Or

AssetImage(AppAsset.background)