CompanyDerivedInfo.fromJson constructor

CompanyDerivedInfo.fromJson(
  1. 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,
    );