copyWith method

Implementation

CustomDialogThemeData copyWith({
  CustomDialogStyle? style,
}) {
  return CustomDialogThemeData(
    style: style ?? this.style,
  );
}