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