RoverRentalRobot constructor
Implementation
factory RoverRentalRobot({
  $core.String? robotId,
  $core.String? locationId,
  $core.String? robotName,
  $core.String? robotMainPartId,
}) {
  final $result = create();
  if (robotId != null) {
    $result.robotId = robotId;
  }
  if (locationId != null) {
    $result.locationId = locationId;
  }
  if (robotName != null) {
    $result.robotName = robotName;
  }
  if (robotMainPartId != null) {
    $result.robotMainPartId = robotMainPartId;
  }
  return $result;
}