validateNativeCalendar function

void validateNativeCalendar(
  1. AstroDateTime value
)

Validates fields that can narrow at the native calendar ABI boundary.

Implementation

void validateNativeCalendar(AstroDateTime value) {
  validateNativeInt32(value.year, 'year');
}