copyWith method
Implementation
LoadingThemeData copyWith({
bool? dismissible,
Color? barrierColor,
Alignment? alignment,
Curve? curve,
Curve? reverseCurve,
LoadingOverlayStyle? style,
}) => LoadingThemeData(
dismissible: dismissible ?? this.dismissible,
barrierColor: barrierColor ?? this.barrierColor,
alignment: alignment ?? this.alignment,
curve: curve ?? this.curve,
reverseCurve: reverseCurve ?? this.reverseCurve,
style: style ?? this.style,
);