voteOptionsItemAddDisable static method

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

Implementation

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