toJson method
Implementation
Map<String, dynamic> toJson() => {
'token_type': tokenType,
'access_token': accessToken,
'refresh_token': refreshToken,
'expires_in': expiresIn.inSeconds,
'expires_at': expiresAt.toIso8601String(),
};