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