v1DeleteOauth2CredentialIntent.fromJson constructor

v1DeleteOauth2CredentialIntent.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory v1DeleteOauth2CredentialIntent.fromJson(Map<String, dynamic> json) {
  final _oauth2CredentialId = json['oauth2CredentialId'] as String;
  return v1DeleteOauth2CredentialIntent(
    oauth2CredentialId: _oauth2CredentialId,
  );
}