ClosedCaptionView constructor

const ClosedCaptionView({
  1. Key? key,
  2. required Responsive responsive,
  3. double distanceFromBottom = 30,
  4. Widget customCaptionView(
    1. BuildContext context,
    2. MeeduPlayerController controller,
    3. Responsive responsive,
    4. String text,
    )?,
})

Implementation

const ClosedCaptionView(
    {Key? key,
    required this.responsive,
    this.distanceFromBottom = 30,
    this.customCaptionView})
    : super(key: key);