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