copyWith method

FluffyClose copyWith({
  1. int? day,
  2. String? time,
})

Implementation

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