CNotificationBaseProps constructor

CNotificationBaseProps({
  1. required Widget title,
  2. required Widget subtitle,
  3. required bool hideCloseButton,
  4. required CNotificationKind kind,
  5. required CNotificationContrast contrast,
  6. required VoidCallback? onCloseButtonTap,
  7. required VoidCallback? onClose,
  8. required int? timeout,
})

Implementation

CNotificationBaseProps({
  required this.title,
  required this.subtitle,
  required this.hideCloseButton,
  required this.kind,
  required this.contrast,
  required this.onCloseButtonTap,
  required this.onClose,
  required this.timeout,
});