IvsPlayerView constructor

const IvsPlayerView({
  1. Key? key,
  2. required IvsPlayer controller,
  3. bool autoDispose = true,
  4. double? aspectRatio,
})

Constructor for IvsPlayerView. Requires an IvsPlayer controller.

Implementation

const IvsPlayerView({
  Key? key,
  required this.controller,
  this.autoDispose = true,
  this.aspectRatio,
}) : super(key: key);