LocationIdSet.fromJson constructor

LocationIdSet.fromJson(
  1. Map json_
)

Implementation

LocationIdSet.fromJson(core.Map json_)
    : this(
        locationIds: json_.containsKey('locationIds')
            ? (json_['locationIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );