RTCVideoElement constructor

RTCVideoElement()

Implementation

RTCVideoElement() {
  _html = web.HTMLVideoElement()
    ..autoplay = true
    ..muted = false
    ..controls = false
    ..style.objectFit = 'contain'
    ..style.border = 'none';

  // Allows Safari iOS to play the video inline
  _html.setAttribute('playsinline', 'true');
}