plusYears method
Adds years to the date component.
Example:
final dt = LocalDateTime.of(2024, 6, 27, 14, 30);
final result = dt.plusYears(1);
Implementation
LocalDateTime plusYears(int years) => LocalDateTime(date.plusYears(years), time);
Adds years to the date component.
final dt = LocalDateTime.of(2024, 6, 27, 14, 30);
final result = dt.plusYears(1);
LocalDateTime plusYears(int years) => LocalDateTime(date.plusYears(years), time);