AuthzPolicyCustomProviderAuthzExtension.fromJson constructor

AuthzPolicyCustomProviderAuthzExtension.fromJson(
  1. Map json_
)

Implementation

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