V2IosKeyRestrictions.fromJson constructor

V2IosKeyRestrictions.fromJson(
  1. Map json_
)

Implementation

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