ModalStyleOptions constructor

const ModalStyleOptions({
  1. BoxDecoration? outerContainerDecoration,
  2. EdgeInsetsGeometry? outerPadding,
  3. BoxDecoration? contentDecoration,
  4. EdgeInsetsGeometry? contentPadding,
  5. TextStyle? titleTextStyle,
  6. Widget? closeIcon,
  7. ButtonStyle? closeButtonStyle,
  8. Color? dividerColor,
  9. double? dividerThickness,
  10. double? dividerHeight,
  11. double? dividerIndent,
  12. double? dividerEndIndent,
  13. double? width,
  14. double? maxWidth,
  15. double? height,
  16. double? maxHeight,
  17. TextStyle? sectionTitleTextStyle,
  18. TextStyle? bodyTextStyle,
  19. TextStyle? emptyStateTextStyle,
  20. ButtonStyle? primaryButtonStyle,
  21. ButtonStyle? secondaryButtonStyle,
  22. ButtonStyle? destructiveButtonStyle,
})

Implementation

const ModalStyleOptions({
  this.outerContainerDecoration,
  this.outerPadding,
  this.contentDecoration,
  this.contentPadding,
  this.titleTextStyle,
  this.closeIcon,
  this.closeButtonStyle,
  this.dividerColor,
  this.dividerThickness,
  this.dividerHeight,
  this.dividerIndent,
  this.dividerEndIndent,
  this.width,
  this.maxWidth,
  this.height,
  this.maxHeight,
  this.sectionTitleTextStyle,
  this.bodyTextStyle,
  this.emptyStateTextStyle,
  this.primaryButtonStyle,
  this.secondaryButtonStyle,
  this.destructiveButtonStyle,
});