min property
Duration
get
min
Short-hand for minutes
Implementation
Duration get min {
final secs = (this * 60).toInt();
return Duration(seconds: secs);
}
Short-hand for minutes
Duration get min {
final secs = (this * 60).toInt();
return Duration(seconds: secs);
}