createUndoable<TParam, TResult, TUndoState> static method

Command<TParam, TResult> createUndoable<TParam, TResult, TUndoState>(
  1. Future<TResult> func(
    1. TParam,
    2. UndoStack<TUndoState>
    ), {
  2. required TResult initialValue,
  3. required UndoFn<TUndoState, TResult> undo,
  4. bool undoOnExecutionFailure = true,
  5. ValueListenable<bool>? restriction,
  6. ExecuteInsteadHandler<TParam>? ifRestrictedExecuteInstead,
  7. bool includeLastResultInCommandResults = false,
  8. ErrorFilter? errorFilter,
  9. bool notifyOnlyWhenValueChanges = false,
  10. String? debugName,
})

Creates a Command for an asynchronous handler function with parameter that returns a value func : handler function Can't be used with an ValueListenableBuilder because it doesn't have a value, but you can register a handler to wait for the completion of the wrapped function. undo : function that undoes the action. initialValue sets the .value of the Command. undoOnExecutionFailure : if true the undo function will be executed automatically if the action fails. restriction : ValueListenable<bool> that can be used to enable/disable the command based on some other state change. true means that the Command cannot be executed. If omitted the command can be executed always except it's already executing ifRestrictedExecuteInstead if restriction is set for the command and its value is true this function will be called instead of the wrapped function. This is useful if you want to execute a different function when the command is restricted. For example you could show a dialog to let the user logg in if the restriction is because the user is not logged in. If you don't set this function, the command will just do nothing when it's restricted. errorFilter : overrides the default set by errorFilterDefault. If false, Exceptions thrown by the wrapped function won't be caught but rethrown unless there is a listener on errors or results. notifyOnlyWhenValueChanges : the default is that the command notifies it's listeners even if the value hasn't changed. If you set this to true the command will only notify it's listeners if the value has changed. debugName optional identifier that is included when you register a globalExceptionHandler or a loggingHandler

Implementation

static Command<TParam, TResult> createUndoable<TParam, TResult, TUndoState>(
  Future<TResult> Function(TParam, UndoStack<TUndoState>) func, {
  required TResult initialValue,
  required UndoFn<TUndoState, TResult> undo,
  bool undoOnExecutionFailure = true,
  ValueListenable<bool>? restriction,
  ExecuteInsteadHandler<TParam>? ifRestrictedExecuteInstead,
  bool includeLastResultInCommandResults = false,
  ErrorFilter? errorFilter,
  bool notifyOnlyWhenValueChanges = false,
  String? debugName,
}) {
  return UndoableCommand<TParam, TResult, TUndoState>(
    func: func,
    initialValue: initialValue,
    undo: undo,
    restriction: restriction,
    ifRestrictedExecuteInstead: ifRestrictedExecuteInstead,
    includeLastResultInCommandResults: includeLastResultInCommandResults,
    noReturnValue: false,
    errorFilter: errorFilter,
    notifyOnlyWhenValueChanges: notifyOnlyWhenValueChanges,
    debugName: debugName,
    noParamValue: false,
    undoOnExecutionFailure: undoOnExecutionFailure,
  );
}