voteMessageTitleIcon static method

Image voteMessageTitleIcon({
  1. double? width,
  2. double? height,
})

Implementation

static Image voteMessageTitleIcon({
  double? width,
  double? height,
}) {
  return Image(
    image: packageImagefn("assets/poll_message_title_icon_light.png"),
    filterQuality: FilterQuality.high,
    width: width,
    height: height,
  );
}