NesSnackbar constructor

const NesSnackbar({
  1. required String text,
  2. NesSnackbarType type = NesSnackbarType.normal,
  3. Key? key,
})

A SnackBar with a NES style.

Implementation

const NesSnackbar({
  required this.text,
  this.type = NesSnackbarType.normal,
  super.key,
});