AliPlayerViewWithControls constructor

const AliPlayerViewWithControls({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required ASRAliPlayer aliPlayer,
  5. dynamic pushFullScreenFunction,
  6. dynamic popFullScreenFunction,
  7. bool isFullScreen = false,
})

Implementation

const AliPlayerViewWithControls(
    {Key? key,
    required this.width,
    required this.height,
    required this.aliPlayer,
    this.pushFullScreenFunction,
    this.popFullScreenFunction,
    this.isFullScreen = false})
    : super(key: key);