createEthiopianDate static method

ETC createEthiopianDate(
  1. int year,
  2. int month,
  3. int day
)

Creates an ETC object for a specific date

Implementation

static ETC createEthiopianDate(int year, int month, int day) {
  return ETC(year: year, month: month, day: day);
}