OAuthError.fromJson constructor
Implementation
factory OAuthError.fromJson(Map<String, dynamic> json) => OAuthError(
error: json['error'] as String,
errorDescription: json['error_description'] as String?,
errorUri: json['error_uri'] as String?,
);