AwesomeSnackbarContent constructor

const AwesomeSnackbarContent({
  1. Key? key,
  2. Color? color,
  3. double? titleFontSize,
  4. double? messageFontSize,
  5. required String title,
  6. required String message,
  7. required ContentType contentType,
  8. bool inMaterialBanner = false,
})

Implementation

const AwesomeSnackbarContent({
  Key? key,
  this.color,
  this.titleFontSize,
  this.messageFontSize,
  required this.title,
  required this.message,
  required this.contentType,
  this.inMaterialBanner = false,
}) : super(key: key);