enableGoRouter function

bool enableGoRouter()

Prompts user to enable GoRouter.

Implementation

bool enableGoRouter() {
  return Confirm(
    prompt: 'Enable GoRouter?',
    defaultValue: true,
  ).interact();
}