GrxToastCard constructor

const GrxToastCard({
  1. Key? key,
  2. required String message,
  3. String? title,
  4. List<GrxToastAction>? actions,
  5. Color? color,
  6. Color? shadowColor,
  7. VoidCallback? onClose,
})

Implementation

const GrxToastCard({
  super.key,
  required this.message,
  this.title,
  this.actions,
  this.color,
  this.shadowColor,
  this.onClose,
});