RefreshResponse class

Constructors

RefreshResponse({required String accessToken, int? expiresInMs, String? refreshToken})
RefreshResponse.fromJson(Map<String, Object?> json)

Properties

accessToken ↔ String
The new access token to use.
getter/setter pair
expiresInMs ↔ int?
The lifetime of the access token, in milliseconds. If not given, the client can assume that the access token will not expire.
getter/setter pair
hashCode → int
The hash code for this object.
no setteroverride
refreshToken ↔ String?
The new refresh token to use when the access token needs to be refreshed again. If not given, the old refresh token can be re-used.
getter/setter pair
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, Object?>
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
override