RBACRoleBindingActuationState.fromJson constructor
RBACRoleBindingActuationState.fromJson(
- 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>,
),
),
),
);