ModalWrapper constructor

const ModalWrapper({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onApply,
  4. String? applyButtonTitle,
  5. bool applyActive = true,
  6. Color? color,
  7. double? afterLinePaddingFactor,
  8. double? bottomPaddingFactor,
  9. bool showTopLine = true,
  10. Color? applyButtonColor,
  11. double? borderRadius,
  12. Clip? clip,
  13. EdgeInsets? padding,
})

Implementation

const ModalWrapper({
  Key? key,
  required this.child,
  this.onApply,
  this.applyButtonTitle,
  this.applyActive = true,
  this.color,
  this.afterLinePaddingFactor,
  this.bottomPaddingFactor,
  this.showTopLine = true,
  this.applyButtonColor,
  this.borderRadius,
  this.clip,
  this.padding,
}) : super(key: key);