VLCController constructor

VLCController({
  1. List<String>? args,
})

Implementation

VLCController({List<String>? args})
    : _createTexture = Completer(),
      _args = args ?? [] {
  _vlcApi = VLCPlayerApi();
  _value = VLCValue.uninitialized();

  if (Platform.isAndroid) {
    _create(args: _args);
  }
}