expiresAt property

DateTime? expiresAt

Saves the remaining lifetime of the access token.

Implementation

DateTime? get expiresAt {
  final String? date = _store.get(_getKey(_kExpirationAtKey));
  return date != null ? DateTime.parse(date) : null;
}
void expiresAt=(DateTime? value)

Implementation

set expiresAt(DateTime? value) {
  _setValue(_kExpirationAtKey, value?.toIso8601String());
}