negativeDuration property

Generator<Duration> negativeDuration

A generator that returns negative Durations.

Implementation

Generator<core.Duration> get negativeDuration {
  return negativeInt.map((int) => core.Duration(microseconds: int));
}