GetRobotPartHistoryResponse constructor
- Iterable<
RobotPartHistoryEntry> ? history,
Implementation
factory GetRobotPartHistoryResponse({
$core.Iterable<RobotPartHistoryEntry>? history,
}) {
final $result = create();
if (history != null) {
$result.history.addAll(history);
}
return $result;
}