voteOptionsItemDelete static method

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

Implementation

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