DialogStyle constructor

DialogStyle({
  1. bool? titleDivider,
  2. BorderRadius? borderRadius,
  3. String? semanticsLabel,
  4. EdgeInsets? titlePadding,
  5. EdgeInsets? contentPadding,
  6. TextStyle? titleTextStyle,
  7. TextStyle? contentTextStyle,
  8. double? elevation,
  9. Color? backgroundColor,
  10. bool? animatePopup,
  11. ShapeBorder? shape,
})

Dialog Transition Type

Implementation

// final DialogTransitionType dialogTransitionType;

DialogStyle({
  this.titleDivider,
  // this.dialogTransitionType,
  this.borderRadius,
  this.semanticsLabel,
  this.titlePadding,
  this.contentPadding,
  this.titleTextStyle,
  this.contentTextStyle,
  this.elevation,
  this.backgroundColor,
  this.animatePopup,
  this.shape,
});