copyWith method

CalendarTheme copyWith({
  1. ValueGetter<Color?>? arrowIconColor,
})

Implementation

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