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