NudgeVideo constructor

const NudgeVideo(
  1. NudgeBox box, {
  2. required String url,
  3. required double height,
  4. required bool autoplay,
  5. required bool loop,
  6. required bool showControls,
  7. required bool muted,
})

Implementation

const NudgeVideo(
  super.box, {
  required this.url,
  required this.height,
  required this.autoplay,
  required this.loop,
  required this.showControls,
  required this.muted,
});