TListOauth2CredentialsBody.fromJson constructor

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

Implementation

factory TListOauth2CredentialsBody.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String?;
  return TListOauth2CredentialsBody(
    organizationId: _organizationId,
  );
}