DescribeFileSystemsResponse.fromJson constructor
Implementation
factory DescribeFileSystemsResponse.fromJson(Map<String, dynamic> json) {
return DescribeFileSystemsResponse(
fileSystems: (json['FileSystems'] as List?)
?.whereNotNull()
.map((e) => FileSystem.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}