messageLongPressTranslate static method

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

Implementation

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