SelectionDuration constructor

SelectionDuration({
  1. int? ticks,
  2. int? days,
  3. int? hours,
  4. int? milliseconds,
  5. int? minutes,
  6. int? seconds,
  7. double? totalDays,
  8. double? totalHours,
  9. double? totalMilliseconds,
  10. double? totalMinutes,
  11. double? totalSeconds,
})

Returns a new SelectionDuration instance.

Implementation

SelectionDuration({
  this.ticks,
  this.days,
  this.hours,
  this.milliseconds,
  this.minutes,
  this.seconds,
  this.totalDays,
  this.totalHours,
  this.totalMilliseconds,
  this.totalMinutes,
  this.totalSeconds,
});