Cores.fromJson constructor

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

Implementation

Cores.fromJson(Map<String, dynamic> json) {
  _core = json['core'];
  _flight = json['flight'];
  _gridfins = json['gridfins'];
  _legs = json['legs'];
  _reused = json['reused'];
  _landingAttempt = json['landing_attempt'];
  _landingSuccess = json['landing_success'];
  _landingType = json['landing_type'];
  _landpad = json['landpad'];
}