ThrustSeaLevel.fromJson constructor

ThrustSeaLevel.fromJson(
  1. Map<String, dynamic> json
)

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