endOfFiscalYearWithConfig method

Hora endOfFiscalYearWithConfig(
  1. FiscalYearConfig config
)

Gets the end of the fiscal year using a configuration.

Implementation

Hora endOfFiscalYearWithConfig(FiscalYearConfig config) {
  final start = startOfFiscalYearWithConfig(config);
  return start.add(1, TemporalUnit.year).subtract(1, TemporalUnit.day);
}