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