messageLongPressRecall static method

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

Implementation

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