addMinutes(): Adds a specified number of minutes to a DateTime.
DateTime addMinutes(int minutes) { return add(Duration(minutes: minutes)); }