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