addMinutes method

DateTime addMinutes(
  1. int amount
)

Adds the specified number of minutes to this DateTime.

Implementation

DateTime addMinutes(int amount) => add(Duration(minutes: amount));