ThrustSeaLevel.fromJson constructor
Implementation
ThrustSeaLevel.fromJson(Map<String, dynamic> json) {
  kN = json['kN'] ?? 0; // You can change the default value accordingly.
  lbf = json['lbf'] ?? 0; // You can change the default value accordingly.
}