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