copyWith method

AwsAniSetting copyWith({
  1. AwsAnimation? animation,
  2. Duration? duration,
  3. Duration? delay,
  4. dynamic controller(
    1. AnimationController
    )?,
  5. bool? manualTrigger,
  6. bool? animate,
  7. double? from,
  8. bool? infinite,
  9. double? spins,
  10. double? to,
})

Implementation

AwsAniSetting copyWith({
  AwsAnimation? animation,
  final Duration? duration,
  final Duration? delay,
  final dynamic Function(AnimationController)? controller,
  final bool? manualTrigger,
  final bool? animate,
  final double? from,
  final bool? infinite,
  final double? spins,
  final double? to,
}) {
  return AwsAniSetting(
    animation: animation ?? this.animation,
    duration: duration ?? this.duration,
    delay: delay ?? this.delay,
    controller: controller ?? this.controller,
    manualTrigger: manualTrigger ?? this.manualTrigger,
    animate: animate ?? this.animate,
    from: from ?? this.from,
    infinite: infinite ?? this.infinite,
    spins: spins ?? this.spins,
    to: to ?? this.to,
  );
}