OptionsDialog constructor

OptionsDialog({
  1. Key? key,
  2. String? title,
  3. String? subTitle,
  4. Widget? icon,
  5. Color? iconColor,
  6. Color? optionsColor,
  7. required List<String> options,
})

Implementation

OptionsDialog({Key? key, this.title, this.subTitle, this.icon, this.iconColor, this.optionsColor, required this.options}) : super(key: key);