PersianDate.fromMillisecondsSinceEpoch constructor

PersianDate.fromMillisecondsSinceEpoch(
  1. int millisecondsSinceEpoch, {
  2. bool isUtc = false,
})

Constructs a new PersianDate instance with the given millisecondsSinceEpoch.

If isUtc is false then the date is in the local time zone.

The constructed PersianDate represents 1970-01-01T00:00:00Z + millisecondsSinceEpoch ms in the given time zone (local or UTC).

Implementation

factory PersianDate.fromMillisecondsSinceEpoch(
  int millisecondsSinceEpoch, {
  bool isUtc = false,
}) =>
    PersianDate.fromDateTime(
      DateTime.fromMillisecondsSinceEpoch(
        millisecondsSinceEpoch,
        isUtc: isUtc,
      ),
    );