create method
Creates the inlet based on the execution mode This method must be called before using the inlet. It initializes the inlet and prepares it for pulling samples. Execution:
Implementation
@override
Future<LSLInlet<T>> create() async {
super.create();
// Create the inlet based on the execution mode
return _useIsolates ? _createIsolated() : _createDirect();
}