ToastMessageWidget constructor

const ToastMessageWidget({
  1. Key? key,
  2. required int type,
  3. required String title,
  4. required String description,
  5. Color? backgroundColor,
})

Implementation

const ToastMessageWidget({
  super.key,
  required this.type,
  required this.title,
  required this.description,
  this.backgroundColor,
});