quarter property
int
get
quarter
Get the quarter of the year (1-4)
Example:
final date = DateTime(2023, 7, 15);
print(date.quarter); // 3
Implementation
int get quarter => ((month - 1) ~/ 3) + 1;
Get the quarter of the year (1-4)
Example:
final date = DateTime(2023, 7, 15);
print(date.quarter); // 3
int get quarter => ((month - 1) ~/ 3) + 1;