SnackConfig constructor

const SnackConfig({
  1. required Color primaryColor,
  2. required Color accentColor,
  3. required Color backgroundColor,
  4. required Color textColor,
  5. required String svg,
})

Implementation

const SnackConfig({
  required this.primaryColor,
  required this.accentColor,
  required this.backgroundColor,
  required this.textColor,
  required this.svg,
});