requiresConfirmationFor method

bool requiresConfirmationFor(
  1. T args
)

Dynamic evaluation of whether this specific execution requires confirmation. By default, this simply returns requiresConfirmation. Override this to skip confirmation for low-risk operations (e.g., deleting a trivial resource).

Implementation

bool requiresConfirmationFor(T args) => requiresConfirmation;