fetchDay method

int fetchDay(
  1. CalendarType calendarType
)

Implementation

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