fetchAssetsImage function

Widget fetchAssetsImage(
  1. String path, {
  2. double width = 48,
  3. double height = 48,
})

Implementation

Widget fetchAssetsImage(String path, {double width = 48, double height = 48}) {
  return Image.asset(path, fit: BoxFit.cover, width: width, height: height);
}