toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['headquarters'] = this._headquarters.toJson();
  data['links'] = this._links.toJson();
  data['name'] = this._name;
  data['founder'] = this._founder;
  data['founded'] = this._founded;
  data['employees'] = this._employees;
  data['vehicles'] = this._vehicles;
  data['launch_sites'] = this._launchSites;
  data['test_sites'] = this._testSites;
  data['ceo'] = this._ceo;
  data['cto'] = this._cto;
  data['coo'] = this._coo;
  data['cto_propulsion'] = this._ctoPropulsion;
  data['valuation'] = this._valuation;
  data['summary'] = this._summary;
  data['id'] = this._id;
  return data;
}