minutes property

Duration get minutes

Converts the integer to a Duration representing the given number of minutes.

Example:

final duration = 30.minutes;

Implementation

Duration get minutes => Duration(minutes: this);