init abstract method

Future<void> init()

Initializes the UI driver.

This method initializes the UI driver by performing any necessary setup or configuration. It can be called before using the UI driver to ensure that it is ready to perform its intended tasks.

Returns: A Future that completes when the initialization is done. If the initialization is successful, the Future completes successfully. If there is an error during initialization, the Future completes with an error.

Implementation

Future<void> init();