addMinutes method

LocalDateTime addMinutes(
  1. int minutes
)

Returns a new LocalDateTime representing the current value with the given number of minutes added.

  • minutes: The number of minutes to add

Returns: The current value plus the given number of minutes.

Implementation

LocalDateTime addMinutes(int minutes) => TimePeriodField.minutes.addDateTime(this, minutes);