DescribeFileSystemsResponse.fromJson constructor

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

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