copyWith method
Implementation
CalendarTheme copyWith({ValueGetter<Color?>? arrowIconColor}) {
return CalendarTheme(
arrowIconColor:
arrowIconColor == null ? this.arrowIconColor : arrowIconColor());
}
CalendarTheme copyWith({ValueGetter<Color?>? arrowIconColor}) {
return CalendarTheme(
arrowIconColor:
arrowIconColor == null ? this.arrowIconColor : arrowIconColor());
}