DialogScrollable constructor

DialogScrollable({
  1. String? header,
  2. RothkoButton? button,
  3. String? buttonText,
  4. Color? buttonColor,
  5. Color? bannerColor,
  6. Color? buttonTextColor,
  7. TextEditingController? textEditingController,
  8. dynamic onTapAction()?,
  9. dynamic onCancel()?,
  10. dynamic onCloseModal()?,
  11. double? msgFontSize,
})

Implementation

DialogScrollable(
    {this.header,
    this.button,
    this.buttonText,
    this.buttonColor,
    this.bannerColor,
    this.buttonTextColor,
    this.textEditingController,
    this.onTapAction,
    this.onCancel,
    this.onCloseModal,
    this.msgFontSize});