GetRobotPartHistoryResponse constructor

GetRobotPartHistoryResponse({
  1. Iterable<RobotPartHistoryEntry>? history,
})

Implementation

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