FFProjectError_ActionInfo constructor
FFProjectError_ActionInfo({})
Implementation
factory FFProjectError_ActionInfo({
$core.String? actionNodeKey,
$core.String? actionKey,
$core.String? actionComponentKey,
$core.String? actionWithActionParamKey,
$core.bool? insideEditor,
}) {
final result = create();
if (actionNodeKey != null) result.actionNodeKey = actionNodeKey;
if (actionKey != null) result.actionKey = actionKey;
if (actionComponentKey != null)
result.actionComponentKey = actionComponentKey;
if (actionWithActionParamKey != null)
result.actionWithActionParamKey = actionWithActionParamKey;
if (insideEditor != null) result.insideEditor = insideEditor;
return result;
}