year property

int get year

The year component of the date.

Example:

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

Implementation

int get year => date.year;