UriTargeting.fromJson constructor

UriTargeting.fromJson(
  1. Map json_
)

Implementation

UriTargeting.fromJson(core.Map json_)
  : this(
      excludedUris: (json_['excludedUris'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      targetedUris: (json_['targetedUris'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );