EventWorkingLocationPropertiesOfficeLocation.fromJson constructor

EventWorkingLocationPropertiesOfficeLocation.fromJson(
  1. Map json_
)

Implementation

EventWorkingLocationPropertiesOfficeLocation.fromJson(core.Map json_)
    : this(
        buildingId: json_.containsKey('buildingId')
            ? json_['buildingId'] as core.String
            : null,
        deskId: json_.containsKey('deskId')
            ? json_['deskId'] as core.String
            : null,
        floorId: json_.containsKey('floorId')
            ? json_['floorId'] as core.String
            : null,
        floorSectionId: json_.containsKey('floorSectionId')
            ? json_['floorSectionId'] as core.String
            : null,
        label:
            json_.containsKey('label') ? json_['label'] as core.String : null,
      );