imageDefault static method

Widget imageDefault({
  1. double width = 44,
  2. double height = 44,
  3. Color? color,
})

Implementation

static Widget imageDefault(
    {double width = 44, double height = 44, Color? color}) {
  return Image(
    color: color,
    gaplessPlayback: true,
    width: width,
    height: height,
    image:
        AssetImage('assets/images/image_default.png', package: packageName),
    fit: BoxFit.fill,
  );
}