copyWith method
Implementation
ScaleRelease copyWith({
ScaleDir? direction,
ScaleZone? startZone,
ScaleZone? endZone,
List<AxisFling>? decay,
AxisFling? settle,
}) =>
ScaleRelease(
direction: direction ?? this.direction,
startZone: startZone ?? this.startZone,
endZone: endZone ?? this.endZone,
decay: decay ?? this.decay,
settle: settle ?? this.settle,
);