FullScreenVideoPlayer constructor

const FullScreenVideoPlayer(
  1. EzPlayer player, {
  2. Key? key,
  3. List<Widget>? bottomLeftBtns,
  4. List<Widget>? bottomRightBtns,
})

Implementation

const FullScreenVideoPlayer(
  this.player, {
  Key? key,
  List<Widget>? bottomLeftBtns,
  List<Widget>? bottomRightBtns,
})  : bottomLeftBtns = bottomLeftBtns ?? const [],
      bottomRightBtns = bottomRightBtns ?? const [],
      super(key: key);