Place.fromJson constructor

Place.fromJson(
  1. Map json_
)

Implementation

Place.fromJson(core.Map json_)
    : this(
        languageCode: json_.containsKey('languageCode')
            ? json_['languageCode'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        placeId: json_.containsKey('placeId')
            ? json_['placeId'] as core.String
            : null,
      );