RBACRoleBindingActuationState.fromJson constructor

RBACRoleBindingActuationState.fromJson(
  1. Map json_
)

Implementation

RBACRoleBindingActuationState.fromJson(core.Map json_)
  : this(
      rbacrolebindingStates: (json_['rbacrolebindingStates']
              as core.Map<core.String, core.dynamic>?)
          ?.map(
            (key, value) => core.MapEntry(
              key,
              RBACRoleBindingActuationRBACRoleBindingState.fromJson(
                value as core.Map<core.String, core.dynamic>,
              ),
            ),
          ),
    );