deepCopy method Null safety

VideoPlayerConfiguration deepCopy()

Implementation

VideoPlayerConfiguration deepCopy() => VideoPlayerConfiguration(
      playerStyle: playerStyle,
      videoCompleteAction: videoCompleteAction,
      showShareButton: showShareButton,
      ctaButtonStyle: ctaButtonStyle?.deepCopy(),
      showPlaybackButton: showPlaybackButton,
      showMuteButton: showMuteButton,
      showBranding: showBranding,
      ctaDelay: ctaDelay?.deepCopy(),
      ctaHighlightDelay: ctaHighlightDelay?.deepCopy(),
      shareBaseURL: shareBaseURL,
      ctaWidth: ctaWidth,
      buttonConfiguration: buttonConfiguration,
      showVideoDetailTitle: showVideoDetailTitle,
    );