copyWith method

FHoverEffect copyWith({
  1. double? opacity,
  2. double? scale,
  3. double? rotate,
  4. Offset? offset,
  5. FFill? fill,
  6. FShadow? shadow,
  7. FCurve? curve,
})

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