InstructionVideoPlayer constructor

const InstructionVideoPlayer({
  1. Key? key,
  2. required String assetPath,
  3. double height = 220,
  4. double width = double.infinity,
})

Implementation

const InstructionVideoPlayer({
  super.key,
  required this.assetPath,
  this.height = 220,
  this.width = double.infinity,
});