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