RBACRoleBindingActuationFeatureSpec.fromJson constructor

RBACRoleBindingActuationFeatureSpec.fromJson(
  1. Map json_
)

Implementation

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