copyWith method

BellConfig copyWith({
  1. int? color,
  2. int? duration,
  3. String? animation,
})

Implementation

BellConfig copyWith({int? color, int? duration, String? animation}) => BellConfig(
      color: color ?? this.color,
      duration: duration ?? this.duration,
      animation: animation ?? this.animation,
    );