copyWith method

  1. @useResult
FCalendarYearMonthPickerStyle copyWith({
  1. FCalendarEntryStyle? enabledStyle,
  2. FCalendarEntryStyle? disabledStyle,
})
inherited

Returns a copy of this FCalendarYearMonthPickerStyle with the given properties replaced.

Implementation

@useResult
FCalendarYearMonthPickerStyle copyWith({FCalendarEntryStyle? enabledStyle, FCalendarEntryStyle? disabledStyle}) =>
    FCalendarYearMonthPickerStyle(
      enabledStyle: enabledStyle ?? this.enabledStyle,
      disabledStyle: disabledStyle ?? this.disabledStyle,
    );