void onReversePressed() { } void onPlayPressed() { } void onForwardPressed() { } Play, reverse, forward 버튼 기능 구현 void onReversePressed() { //현재 영상 위치를 알아야한다(videoController!.value.position) final currentPosition = videoController!.value.position; // duration타입 Duration position = Duration(); // position을 기본 0초로 세팅 if(currentPosition.inSeconds > 3) { position = currentPosition - Duration(seconds:..