copyWith method
Implementation
FHoverEffect copyWith({
double? opacity,
double? scale,
double? rotate,
Offset? offset,
FFill? fill,
FShadow? shadow,
FCurve? curve,
}) {
return FHoverEffect(
opacity: opacity ?? this.opacity,
scale: scale ?? this.scale,
rotate: rotate ?? this.rotate,
offset: offset ?? this.offset,
fill: fill ?? this.fill,
shadow: shadow ?? this.shadow,
curve: curve ?? this.curve,
);
}