BatchAssociateScramSecretResponse.fromJson constructor
Implementation
factory BatchAssociateScramSecretResponse.fromJson(
Map<String, dynamic> json) {
return BatchAssociateScramSecretResponse(
clusterArn: json['clusterArn'] as String?,
unprocessedScramSecrets: (json['unprocessedScramSecrets'] as List?)
?.whereNotNull()
.map(
(e) => UnprocessedScramSecret.fromJson(e as Map<String, dynamic>))
.toList(),
);
}