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