KVideoPlayerContols constructor

const KVideoPlayerContols({
  1. Key? key,
  2. required VideoPlayerController controller,
  3. required bool showBack,
  4. required bool showFullScreen,
  5. Color? themeColor,
  6. required double aspectRatio,
  7. required dynamic onAspectRatioChanged(
    1. double
    ),
})

Implementation

const KVideoPlayerContols({
  super.key,
  required this.controller,
  required this.showBack,
  required this.showFullScreen,
  this.themeColor,
  required this.aspectRatio,
  required this.onAspectRatioChanged,
});