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