dateTimeAfterEpoch property

Generator<DateTime> dateTimeAfterEpoch

A generator that returns DateTimes after the UNIX epoch.

Implementation

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