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