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