v1OauthResult.fromJson constructor
Implementation
factory v1OauthResult.fromJson(Map<String, dynamic> json) {
final _userId = json['userId'] as String;
final _apiKeyId = json['apiKeyId'] as String;
final _credentialBundle = json['credentialBundle'] as String;
return v1OauthResult(
userId: _userId,
apiKeyId: _apiKeyId,
credentialBundle: _credentialBundle,
);
}