SnackBarInfo constructor

const SnackBarInfo({
  1. required SnackBarType type,
  2. required bool showSnackBar,
  3. String? message,
})

Implementation

const SnackBarInfo({
  required this.type,
  required this.showSnackBar,
  this.message,
});