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