HMSVideoView constructor

HMSVideoView({
  1. Key? key,
  2. required HMSVideoTrack track,
  3. bool setMirror = false,
  4. bool matchParent = true,
  5. ScaleType scaleType = ScaleType.SCALE_ASPECT_FIT,
})

Implementation

HMSVideoView(
    {Key? key,
    required this.track,
    this.setMirror = false,
    this.matchParent = true,
    this.scaleType = ScaleType.SCALE_ASPECT_FIT})
    : super(key: key ?? ObjectKey(track.trackId));