m property

Short-hand for minutes

Implementation

Duration get m {
  final secs = (this * 60).toInt();
  return Duration(seconds: secs);
}