OpenWVideo constructor

const OpenWVideo({
  1. Key? key,
  2. required dynamic state,
  3. required FGeneralTypeInput value,
  4. required int startAt,
  5. required bool showControls,
  6. required bool showFullScreen,
  7. required bool loopVideo,
})

Returns a Video widget in Teta

Implementation

const OpenWVideo({
  super.key,
  required this.state,
  required this.value,
  required this.startAt,
  required this.showControls,
  required this.showFullScreen,
  required this.loopVideo,
});