authTime property
DateTime?
get
authTime
Time when the End-User authentication occurred.
Implementation
DateTime? get authTime => this['auth_time'] == null
? null
: DateTime.fromMillisecondsSinceEpoch(this['auth_time'] * 1000);