imageDefault static method
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,
);
}