endOfFiscalYear method

Hora endOfFiscalYear({
  1. int startMonth = 1,
  2. int startDay = 1,
})

Gets the end of the fiscal year.

Implementation

Hora endOfFiscalYear({int startMonth = 1, int startDay = 1}) {
  final config = FiscalYearConfig(startMonth: startMonth, startDay: startDay);
  return endOfFiscalYearWithConfig(config);
}