IvsPlayerController constructor

IvsPlayerController({
  1. PlayerPlatformChannel? platformChannel,
})

Implementation

IvsPlayerController({
  PlayerPlatformChannel? platformChannel,
}) : _platformChannel = platformChannel ?? DefaultPlayerPlatformChannel() {
  _platformChannel.initialize();
  _platformChannel.setEventHandler(this);
}