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