ToastificationTheme constructor

const ToastificationTheme({
  1. Key? key,
  2. required ToastificationThemeData themeData,
  3. required Widget child,
})

Creates a toastification theme that controls the appearance of toastification widgets.

Implementation

const ToastificationTheme({
  super.key,
  required this.themeData,
  required super.child,
});