Business.fromJson constructor

Business.fromJson(
  1. Map json_
)

Implementation

Business.fromJson(core.Map json_)
  : this(
      businessCenter: json_['businessCenter'] as core.bool?,
      businessCenterException:
          json_['businessCenterException'] as core.String?,
      meetingRooms: json_['meetingRooms'] as core.bool?,
      meetingRoomsCount: json_['meetingRoomsCount'] as core.int?,
      meetingRoomsCountException:
          json_['meetingRoomsCountException'] as core.String?,
      meetingRoomsException: json_['meetingRoomsException'] as core.String?,
    );