class Toggle extends GenericPrompt<boolean, string, ToggleSettings>import { Toggle } from "https://dotland.deno.dev/x/cliffy@v0.19.0/mod.ts"; Toggle prompt representation. Propertiesprotectedstatus: stringMethodsprotectedformat(value: boolean): stringFormat output value. protectedgetValue(): stringGet input value. protectedhandleEvent(event: KeyCode): Promise<void>Handle user input event. protectedmessage(): stringprotectedread(): Promise<boolean>Read user input from stdin, handle events and validate user input. protectedselectActive()Set active. protectedselectInactive()Set inactive. protectedtransform(value: string): boolean | undefinedMap input value to output value. protectedvalidate(value: string): boolean | stringValidate input value. Static Methodsprompt(options: string | ToggleOptions): Promise<boolean>Execute the prompt and show cursor on end.