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