copyWith method

FEffects copyWith({
  1. FHoverEffect? hover,
})

Implementation

FEffects copyWith({
  FHoverEffect? hover,
}) {
  return FEffects(
    hover: hover ?? this.hover,
  );
}