copyWith method
Implementation
CalendarView copyWith({
int? year,
int? month,
}) {
return CalendarView(
year ?? this.year,
month ?? this.month,
);
}
CalendarView copyWith({
int? year,
int? month,
}) {
return CalendarView(
year ?? this.year,
month ?? this.month,
);
}