$AllowedLocations.fromJson constructor

$AllowedLocations.fromJson(
  1. Map json_
)

Implementation

$AllowedLocations.fromJson(core.Map json_)
  : this(
      encodedLocations: json_['encodedLocations'] as core.String?,
      locations: (json_['locations'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );