GetRobotPartHistoryResponse constructor

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

Implementation

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