fetchMonth method

int fetchMonth(
  1. CalendarType calendarType
)

Implementation

int fetchMonth(CalendarType calendarType) {
  if (calendarType == CalendarType.persian) {
    return Jalali.fromDateTime(this).month;
  }
  return month;
}