copyWith method

  1. @override
BackgroundTypePattern copyWith({
  1. BackgroundFill? fill,
  2. int? intensity,
  3. bool? isInverted,
  4. bool? isMoving,
})
override

Implementation

@override
BackgroundTypePattern copyWith({
  BackgroundFill? fill,
  int? intensity,
  bool? isInverted,
  bool? isMoving,
}) =>
    BackgroundTypePattern(
      fill: fill ?? this.fill,
      intensity: intensity ?? this.intensity,
      isInverted: isInverted ?? this.isInverted,
      isMoving: isMoving ?? this.isMoving,
    );