FFProjectError_ActionInfo constructor

FFProjectError_ActionInfo({
  1. String? actionNodeKey,
  2. String? actionKey,
  3. String? actionComponentKey,
  4. String? actionWithActionParamKey,
  5. bool? insideEditor,
})

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;
}