dateTimeBeforeEpoch property

Generator<DateTime> dateTimeBeforeEpoch

A generator that returns DateTimes before the UNIX epoch.

Implementation

Generator<core.DateTime> get dateTimeBeforeEpoch {
  return negativeInt
      .map((int) => core.DateTime.fromMicrosecondsSinceEpoch(int));
}