NesSnackbarTheme constructor

const NesSnackbarTheme({
  1. required Color normal,
  2. required Color success,
  3. required Color warning,
  4. required Color error,
})

Class with information regarding buttons inside Flutter Nes.

Implementation

const NesSnackbarTheme({
  required this.normal,
  required this.success,
  required this.warning,
  required this.error,
});