textKeyboard static method

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

Implementation

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