copyWith method

MaterialVideoControlsThemeData copyWith({
  1. bool? displaySeekBar,
  2. bool? automaticallyImplySkipNextButton,
  3. bool? automaticallyImplySkipPreviousButton,
  4. bool? volumeGesture,
  5. bool? brightnessGesture,
  6. bool? seekOnDoubleTap,
  7. bool? visibleOnMount,
  8. Duration? controlsHoverDuration,
  9. Duration? controlsTransitionDuration,
  10. Widget bufferingIndicatorBuilder(
    1. BuildContext
    )?,
  11. Widget volumeIndicatorBuilder(
    1. BuildContext,
    2. double
    )?,
  12. Widget brightnessIndicatorBuilder(
    1. BuildContext,
    2. double
    )?,
  13. List<Widget>? primaryButtonBar,
  14. List<Widget>? topButtonBar,
  15. EdgeInsets? topButtonBarMargin,
  16. List<Widget>? bottomButtonBar,
  17. EdgeInsets? bottomButtonBarMargin,
  18. double? buttonBarHeight,
  19. double? buttonBarButtonSize,
  20. Color? buttonBarButtonColor,
  21. EdgeInsets? seekBarMargin,
  22. double? seekBarHeight,
  23. double? seekBarContainerHeight,
  24. Color? seekBarColor,
  25. Color? seekBarPositionColor,
  26. Color? seekBarBufferColor,
  27. double? seekBarThumbSize,
  28. Color? seekBarThumbColor,
  29. bool? shiftSubtitlesOnControlsVisibilityChange,
})

Creates a copy of this MaterialVideoControlsThemeData with the given fields replaced by the non-null parameter values.

Implementation

MaterialVideoControlsThemeData copyWith({
  bool? displaySeekBar,
  bool? automaticallyImplySkipNextButton,
  bool? automaticallyImplySkipPreviousButton,
  bool? volumeGesture,
  bool? brightnessGesture,
  bool? seekOnDoubleTap,
  bool? visibleOnMount,
  Duration? controlsHoverDuration,
  Duration? controlsTransitionDuration,
  Widget Function(BuildContext)? bufferingIndicatorBuilder,
  Widget Function(BuildContext, double)? volumeIndicatorBuilder,
  Widget Function(BuildContext, double)? brightnessIndicatorBuilder,
  List<Widget>? primaryButtonBar,
  List<Widget>? topButtonBar,
  EdgeInsets? topButtonBarMargin,
  List<Widget>? bottomButtonBar,
  EdgeInsets? bottomButtonBarMargin,
  double? buttonBarHeight,
  double? buttonBarButtonSize,
  Color? buttonBarButtonColor,
  EdgeInsets? seekBarMargin,
  double? seekBarHeight,
  double? seekBarContainerHeight,
  Color? seekBarColor,
  Color? seekBarPositionColor,
  Color? seekBarBufferColor,
  double? seekBarThumbSize,
  Color? seekBarThumbColor,
  bool? shiftSubtitlesOnControlsVisibilityChange,
}) {
  return MaterialVideoControlsThemeData(
    displaySeekBar: displaySeekBar ?? this.displaySeekBar,
    automaticallyImplySkipNextButton: automaticallyImplySkipNextButton ??
        this.automaticallyImplySkipNextButton,
    automaticallyImplySkipPreviousButton:
        automaticallyImplySkipPreviousButton ??
            this.automaticallyImplySkipPreviousButton,
    volumeGesture: volumeGesture ?? this.volumeGesture,
    brightnessGesture: brightnessGesture ?? this.brightnessGesture,
    seekOnDoubleTap: seekOnDoubleTap ?? this.seekOnDoubleTap,
    visibleOnMount: visibleOnMount ?? this.visibleOnMount,
    controlsHoverDuration:
        controlsHoverDuration ?? this.controlsHoverDuration,
    controlsTransitionDuration:
        controlsTransitionDuration ?? this.controlsTransitionDuration,
    bufferingIndicatorBuilder:
        bufferingIndicatorBuilder ?? this.bufferingIndicatorBuilder,
    volumeIndicatorBuilder:
        volumeIndicatorBuilder ?? this.volumeIndicatorBuilder,
    brightnessIndicatorBuilder:
        brightnessIndicatorBuilder ?? this.brightnessIndicatorBuilder,
    primaryButtonBar: primaryButtonBar ?? this.primaryButtonBar,
    topButtonBar: topButtonBar ?? this.topButtonBar,
    topButtonBarMargin: topButtonBarMargin ?? this.topButtonBarMargin,
    bottomButtonBar: bottomButtonBar ?? this.bottomButtonBar,
    bottomButtonBarMargin:
        bottomButtonBarMargin ?? this.bottomButtonBarMargin,
    buttonBarHeight: buttonBarHeight ?? this.buttonBarHeight,
    buttonBarButtonSize: buttonBarButtonSize ?? this.buttonBarButtonSize,
    buttonBarButtonColor: buttonBarButtonColor ?? this.buttonBarButtonColor,
    seekBarMargin: seekBarMargin ?? this.seekBarMargin,
    seekBarHeight: seekBarHeight ?? this.seekBarHeight,
    seekBarContainerHeight:
        seekBarContainerHeight ?? this.seekBarContainerHeight,
    seekBarColor: seekBarColor ?? this.seekBarColor,
    seekBarPositionColor: seekBarPositionColor ?? this.seekBarPositionColor,
    seekBarBufferColor: seekBarBufferColor ?? this.seekBarBufferColor,
    seekBarThumbSize: seekBarThumbSize ?? this.seekBarThumbSize,
    seekBarThumbColor: seekBarThumbColor ?? this.seekBarThumbColor,
    shiftSubtitlesOnControlsVisibilityChange:
        shiftSubtitlesOnControlsVisibilityChange ??
            this.shiftSubtitlesOnControlsVisibilityChange,
  );
}