updateVideoLayoutSize method

dynamic updateVideoLayoutSize(
  1. Orientation orientation
)

Implementation

updateVideoLayoutSize(Orientation orientation) {
  videoLayoutWidth =
      orientation == Orientation.portrait ? Get.width : 648.0.scale375();
  videoLayoutHeight = orientation == Orientation.portrait
      ? 665.0.scale375Height()
      : Get.height;
}