setupVideo static method

Future<void> setupVideo(
  1. int viewId,
  2. int uid,
  3. bool isLocal,
  4. int width,
  5. int height,
)

Implementation

static Future<void> setupVideo(
    int viewId, int uid, bool isLocal, int width, int height) async {
  // System.out.println("setupView "+viewId.toString()+uid.toString());
  await _channel.invokeMethod('setupVideo', {
    'viewId': viewId,
    'uid': uid,
    'isLocal': isLocal,
    'width': width,
    'height': height
  });
}