getMonthLength static method

int getMonthLength({
  1. required int year,
  2. required int month,
})

Implementation

static int getMonthLength({required int year, required int month}) {
  return Gregorian(year, month).monthLength;
}