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