Returns the minutes component of the Duration.
Example:
Duration(hours: 2, minutes: 3).minutesOnly; // 3
int get minutesOnly => inMinutes.remainder(60);