startCapture static method

void startCapture(
  1. int viewId
)

开始视频采集

Implementation

static void startCapture(int viewId) async {
  _channel.invokeMethod("startCapture", {"viewId": viewId});
  sendRoomMessage(mRoomId, mUserId, EVENT_START_CAPTURE);
}