confirm method

bool confirm(
  1. String msg
)

Prompts the user for a yes/no confirmation with the given msg.

Implementation

bool confirm(String msg) => Confirm(prompt: msg).interact();