DialogForm constructor

DialogForm({
  1. String? header,
  2. @required List<Widget>? children,
  3. @required String? label,
  4. RothkoButton? button,
  5. String? buttonText,
  6. Color? buttonColor,
  7. Color? bannerColor,
  8. Color? buttonTextColor,
  9. TextEditingController? textEditingController,
  10. dynamic onTapAction()?,
  11. dynamic onCancel()?,
  12. dynamic onCloseModal()?,
  13. double? width,
  14. double? msgFontSize,
  15. @required int? noOfTextFields,
})

Implementation

DialogForm(
    {this.header,
    @required this.children,
    @required this.label,
    this.button,
    this.buttonText,
    this.buttonColor,
    this.bannerColor,
    this.buttonTextColor,
    this.textEditingController,
    this.onTapAction,
    this.onCancel,
    this.onCloseModal,
    this.width,
    this.msgFontSize,
    @required this.noOfTextFields});