CustomMaterialControls constructor

const CustomMaterialControls({
  1. Key? key,
  2. required dynamic onControllerInitialized(
    1. FlutterDanmakuController
    ),
  3. Widget? appBarOverlayUI,
  4. Gradient? bottomGradient,
  5. List<Widget>? rightButtonList,
  6. double? aspectRatio,
  7. String? videoTitle,
  8. String? progressBarIndicatorImagePath,
  9. List<DanmakuData>? danmakuListIn,
  10. Color? primaryColor,
})

Implementation

const CustomMaterialControls({
  Key? key,
  required this.onControllerInitialized,
  this.appBarOverlayUI,
  this.bottomGradient,
  this.rightButtonList,
  this.aspectRatio,
  this.videoTitle,
  this.progressBarIndicatorImagePath,
  this.danmakuListIn,
  this.primaryColor,
}) : super(key: key);