Initializes an engine.
Change an update period (affects the sound latency).
Future<void> init([int periodMs = 10]) async { if (_isInit) return; await _engine.init(periodMs); _isInit = true; }