GoogleMapsPlacesV1PlaceAccessibilityOptions.fromJson constructor
GoogleMapsPlacesV1PlaceAccessibilityOptions.fromJson(
- Map json_
Implementation
GoogleMapsPlacesV1PlaceAccessibilityOptions.fromJson(core.Map json_)
: this(
wheelchairAccessibleEntrance:
json_.containsKey('wheelchairAccessibleEntrance')
? json_['wheelchairAccessibleEntrance'] as core.bool
: null,
wheelchairAccessibleParking:
json_.containsKey('wheelchairAccessibleParking')
? json_['wheelchairAccessibleParking'] as core.bool
: null,
wheelchairAccessibleRestroom:
json_.containsKey('wheelchairAccessibleRestroom')
? json_['wheelchairAccessibleRestroom'] as core.bool
: null,
wheelchairAccessibleSeating:
json_.containsKey('wheelchairAccessibleSeating')
? json_['wheelchairAccessibleSeating'] as core.bool
: null,
);