setSource method

  1. @override
void setSource({
  1. required SourceDescription? source,
})
override

Implementation

@override
void setSource({required PlatformInterface.SourceDescription? source}) {
  if (source == null) {
    return;
  }

  _theoPlayerJS.source = toSourceDescription(source);
}