voiceKeyboard static method

Widget voiceKeyboard({
  1. double width = 30,
  2. double height = 30,
  3. Color? color,
})

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,
  );
}