AccessLocations.fromJson constructor

AccessLocations.fromJson(
  1. Map json_
)

Implementation

AccessLocations.fromJson(core.Map json_)
    : this(
        principalOfficeCountry: json_.containsKey('principalOfficeCountry')
            ? json_['principalOfficeCountry'] as core.String
            : null,
        principalPhysicalLocationCountry:
            json_.containsKey('principalPhysicalLocationCountry')
                ? json_['principalPhysicalLocationCountry'] as core.String
                : null,
      );