creationTime property

DateTime? creationTime

When this account was created as dictated by the server clock.

Implementation

DateTime? get creationTime => _creationTimestamp == null
    ? null
    : DateTime.fromMillisecondsSinceEpoch(_creationTimestamp!, isUtc: true);