instance property

TypeMate get instance

Gets the singleton instance of TypeMate.

Returns the same instance across all calls, ensuring consistent state management and event handling.

Example:

final typeMate = TypeMate.instance;
await typeMate.initialize();

Implementation

static TypeMate get instance => _instance;