BannerFilledButton constructor

BannerFilledButton({
  1. @required String? message,
  2. Color? messageColor,
  3. String? header,
  4. String? buttonText,
  5. Color? buttonColor,
  6. Color? bannerColor,
  7. Color? headerColor,
  8. Color? buttonTextColor,
  9. void onPressed()?,
  10. double? width,
  11. double? msgFontSize,
})

Implementation

BannerFilledButton(
    {@required this.message,
    this.messageColor,
    this.header,
    this.buttonText,
    this.buttonColor,
    this.bannerColor,
    this.headerColor,
    this.buttonTextColor,
    this.onPressed,
    this.width,
    this.msgFontSize});