moreReactions static method

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

Implementation

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