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