toJson method
Converts the DropboxToken to a JSON map for storage.
Implementation
Map<String, dynamic> toJson() => {
'access_token': accessToken,
'refresh_token': refreshToken,
'token_type': tokenType,
'expires_in': expiresIn.toIso8601String(),
};