DurationRange constructor

DurationRange({
  1. int? maxSeconds,
  2. int? minSeconds,
})

Implementation

DurationRange({
  this.maxSeconds,
  this.minSeconds,
});