DialogPanel.form constructor

DialogPanel.form({
  1. String? title,
  2. String? subTitle,
  3. required List<BottomSheetFormGroup>? groups,
  4. BottomSheetPanelHeight bottomSheetPanelHeight = BottomSheetPanelHeight.L,
  5. bool barrierDismissible = true,
  6. bool removePill = false,
  7. bool? dense = false,
  8. bool? multipleItemBackgrounds = false,
  9. String? okButtonText,
})

Implementation

DialogPanel.form({
  this.title,
  this.subTitle,
  required this.groups,
  this.bottomSheetPanelHeight = BottomSheetPanelHeight.L,
  this.barrierDismissible = true,
  this.removePill = false,
  this.dense = false,
  this.multipleItemBackgrounds = false,
  this.okButtonText,
})  : child = null,
      items = null,
      primaryColor = null,
      cancelText = null,
      useNavigator = false,
      _type = 4;