PeerVideoView constructor

const PeerVideoView({
  1. Key? key,
  2. required MediaStream? stream,
  3. bool mirror = false,
  4. PeerVideoViewObjectFit objectFit = PeerVideoViewObjectFit.contain,
})

Implementation

const PeerVideoView({
  super.key,
  required this.stream,
  this.mirror = false,
  this.objectFit = PeerVideoViewObjectFit.contain,
});