creationTime property

DateTime? creationTime

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

Implementation

DateTime? get creationTime => _creationTimestamp == null
    ? null
    // Needed to support Flutter <3.19
    // ignore: unnecessary_non_null_assertion
    : DateTime.fromMillisecondsSinceEpoch(_creationTimestamp!, isUtc: true);