V2BrowserKeyRestrictions.fromJson constructor

V2BrowserKeyRestrictions.fromJson(
  1. Map json_
)

Implementation

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