ToastDetails constructor

ToastDetails({
  1. required String message,
  2. Color? backgroundColor,
  3. double? fontSize,
  4. ToastGravity? gravity,
  5. Color? textColor,
  6. Toast? toastLength,
})

Implementation

ToastDetails({
  required this.message,
  this.backgroundColor,
  this.fontSize,
  this.gravity,
  this.textColor,
  this.toastLength,
});