Player constructor

Player({
  1. PlayerConfig config = const PlayerConfig(),
})

Implementation

Player({
  PlayerConfig config = const PlayerConfig(),
}) {
  _uuid = hashCode.toString();
  _playerPlatformInterface = BitmovinPlayerPlatformInterface.instance
      .createPlayer(id, config, emitEvent);
}