ToastConfig constructor

const ToastConfig({
  1. required AlertType type,
  2. required String message,
  3. Duration duration = const Duration(seconds: 2),
  4. AlertTheme? theme,
})

Implementation

const ToastConfig({
  required this.type,
  required this.message,
  this.duration = const Duration(seconds: 2),
  this.theme,
});