GeneralDialog constructor

GeneralDialog({
  1. Key? key,
  2. String? title,
  3. String? subTitle,
  4. Widget? icon,
  5. required String yesAction,
  6. String? noAction,
  7. String? cancelAction,
  8. Color? yesColor,
  9. Color? noColor,
  10. Color? cancelColor,
})

Implementation

GeneralDialog(
    {Key? key,
    this.title,
    this.subTitle,
    this.icon,
    required this.yesAction,
    this.noAction,
    this.cancelAction,
    this.yesColor,
    this.noColor,
    this.cancelColor})
    : super(key: key);