RoverRentalRobot constructor

RoverRentalRobot({
  1. String? robotId,
  2. String? locationId,
  3. String? robotName,
  4. String? robotMainPartId,
})

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;
}