SimpleAlertDialogContainer constructor

const SimpleAlertDialogContainer({
  1. required Widget title,
  2. required List<Widget> children,
  3. String? cancelTitle,
  4. String? confirmTitle,
  5. VoidCallback? onCancel,
  6. VoidCallback? onConfirm,
  7. Color themeColor = const Color(0xFFEC6D20),
})

Implementation

const SimpleAlertDialogContainer({
  required this.title,
  required this.children,
  this.cancelTitle,
  this.confirmTitle,
  this.onCancel,
  this.onConfirm,
  this.themeColor = const Color(0xFFEC6D20),
});