copyWith method
Implementation
FluffyClose copyWith({int? day, String? time}) {
return FluffyClose(day: day ?? this.day, time: time ?? this.time);
}
FluffyClose copyWith({int? day, String? time}) {
return FluffyClose(day: day ?? this.day, time: time ?? this.time);
}