V2BrowserKeyRestrictions.fromJson constructor

V2BrowserKeyRestrictions.fromJson(
  1. Map json_
)

Implementation

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