BRTCVideoParams constructor

BRTCVideoParams({
  1. required int x,
  2. required int y,
  3. String? userId,
  4. bool? isFront,
  5. required bool isLocal,
  6. required int width,
  7. required int height,
  8. int viewId = 0,
})

Implementation

BRTCVideoParams({
  required this.x,
  required this.y,
  this.userId,
  this.isFront,
  required this.isLocal,
  required this.width,
  required this.height,
  this.viewId = 0,
});