Gets the fiscal quarter (1-4).
int fiscalQuarter({int startMonth = 1}) { final fiscalMonth = _fiscalMonth(startMonth); return ((fiscalMonth - 1) ~/ 3) + 1; }