Engines constructor

Engines({
  1. required Isp isp,
  2. required ThrustSeaLevel thrustSeaLevel,
  3. required ThrustSeaLevel thrustVacuum,
  4. required num number,
  5. required String type,
  6. required String version,
  7. required String layout,
  8. required num engineLossMax,
  9. required String propellant1,
  10. required String propellant2,
  11. required num thrustToWeight,
})

Implementation

Engines({
  required Isp isp,
  required ThrustSeaLevel thrustSeaLevel,
  required ThrustSeaLevel thrustVacuum,
  required num number,
  required String type,
  required String version,
  required String layout,
  required num engineLossMax,
  required String propellant1,
  required String propellant2,
  required num thrustToWeight,
}) {
  _isp = isp;
  _thrustSeaLevel = thrustSeaLevel;
  _thrustVacuum = thrustVacuum;
  _number = number;
  _type = type;
  _version = version;
  _layout = layout;
  _engineLossMax = engineLossMax;
  _propellant1 = propellant1;
  _propellant2 = propellant2;
  _thrustToWeight = thrustToWeight;
}