AppToastSettings constructor

const AppToastSettings({
  1. required ToastType toastType,
  2. required String message,
  3. Key? key,
})

Implementation

const AppToastSettings({
  required this.toastType,
  required this.message,
  super.key,
});