copyWith method

LoadingThemeData copyWith({
  1. bool? dismissible,
  2. Color? barrierColor,
  3. Alignment? alignment,
  4. Curve? curve,
  5. Curve? reverseCurve,
  6. LoadingOverlayStyle? style,
})

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,
);