plusSeconds method

Duration plusSeconds([
  1. int v = 1
])

count up this duration with n seconds

Implementation

Duration plusSeconds([int v = 1]) {
  return this + Duration(seconds: v);
}