DescribeNFSFileSharesOutput.fromJson constructor

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

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(),
  );
}