copyWith method
BackgroundTypePattern
copyWith({
- BackgroundFill? fill,
- int? intensity,
- bool? isInverted,
- 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,
);