Dragon constructor

Dragon({
  1. required HeatShield heatShield,
  2. required LaunchPayloadMass launchPayloadMass,
  3. required LaunchPayloadVol launchPayloadVol,
  4. required LaunchPayloadMass returnPayloadMass,
  5. required LaunchPayloadVol returnPayloadVol,
  6. required PressurizedCapsule pressurizedCapsule,
  7. required Trunk trunk,
  8. required HeightWTrunk heightWTrunk,
  9. required Diameter diameter,
  10. required String firstFlight,
  11. required List<String> flickrImages,
  12. required String name,
  13. required String type,
  14. required bool active,
  15. required num crewCapacity,
  16. required num sidewallAngleDeg,
  17. required num orbitDurationYr,
  18. required num dryMassKg,
  19. required num dryMassLb,
  20. required List<Thrusters> thrusters,
  21. required String wikipedia,
  22. required String description,
  23. required String id,
})

Implementation

Dragon({
  required HeatShield heatShield,
  required LaunchPayloadMass launchPayloadMass,
  required LaunchPayloadVol launchPayloadVol,
  required LaunchPayloadMass returnPayloadMass,
  required LaunchPayloadVol returnPayloadVol,
  required PressurizedCapsule pressurizedCapsule,
  required Trunk trunk,
  required HeightWTrunk heightWTrunk,
  required Diameter diameter,
  required String firstFlight,
  required List<String> flickrImages,
  required String name,
  required String type,
  required bool active,
  required num crewCapacity,
  required num sidewallAngleDeg,
  required num orbitDurationYr,
  required num dryMassKg,
  required num dryMassLb,
  required List<Thrusters> thrusters,
  required String wikipedia,
  required String description,
  required String id,
}) {
  _heatShield = heatShield;
  _launchPayloadMass = launchPayloadMass;
  _launchPayloadVol = launchPayloadVol;
  _returnPayloadMass = returnPayloadMass;
  _returnPayloadVol = returnPayloadVol;
  _pressurizedCapsule = pressurizedCapsule;
  _trunk = trunk;
  _heightWTrunk = heightWTrunk;
  _diameter = diameter;
  _firstFlight = firstFlight;
  _flickrImages = flickrImages;
  _name = name;
  _type = type;
  _active = active;
  _crewCapacity = crewCapacity;
  _sidewallAngleDeg = sidewallAngleDeg;
  _orbitDurationYr = orbitDurationYr;
  _dryMassKg = dryMassKg;
  _dryMassLb = dryMassLb;
  _thrusters = thrusters;
  _wikipedia = wikipedia;
  _description = description;
  _id = id;
}