authTime property

DateTime? get authTime

The authentication time formatted as UTC string. This is the time the user authenticated (signed in) and not the time the token was refreshed.

Implementation

DateTime? get authTime => _data.authTimestamp == null
    ? null
    : DateTime.fromMillisecondsSinceEpoch(_data.authTimestamp!);