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