copyWith method
Implementation
MinMotion copyWith({
Duration? fast,
Duration? normal,
Duration? slow,
Curve? curve,
}) {
return MinMotion(
fast: fast ?? this.fast,
normal: normal ?? this.normal,
slow: slow ?? this.slow,
curve: curve ?? this.curve,
);
}