day property

int get day

Gets the day of the month component (1-31).

Example:

final zdt = ZonedDateTime.parse('2023-12-25T15:30:00+01:00');
print(zdt.day); // 25

Implementation

int get day => _localDateTime.day;