VrPlayer constructor

const VrPlayer({
  1. required VrPlayerCreatedCallback onCreated,
  2. required double x,
  3. required double y,
  4. required double width,
  5. required double height,
  6. Key? key,
})

Implementation

const VrPlayer({
  required this.onCreated,
  required this.x,
  required this.y,
  required this.width,
  required this.height,
  super.key,
});