CompanyDerivedInfo.fromJson constructor
CompanyDerivedInfo.fromJson(
- Map json_
Implementation
CompanyDerivedInfo.fromJson(core.Map json_)
: this(
headquartersLocation: json_.containsKey('headquartersLocation')
? Location.fromJson(json_['headquartersLocation']
as core.Map<core.String, core.dynamic>)
: null,
);