day property

int get day

The day component of the date.

Example:

final dt = LocalDateTime.of(2025, 6, 27, 14, 30);
final day = dt.day;

Implementation

int get day => date.day;