voteOptionsItemDefaultIcon static method

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

Implementation

static Image voteOptionsItemDefaultIcon({
  double? width,
  double? height,
}) {
  return Image(
    filterQuality: FilterQuality.high,
    width: width,
    height: height,
    image: packageImagefn("assets/poll_delete_option_disable.png"),
    fit: BoxFit.cover,
  );
}