createRTCVideo static method

Future<RTCVideo?> createRTCVideo(
  1. RTCVideoContext context
)

Creates an engine instance.

This is the very first API that you must call if you want to use all the RTC capabilities.
If there is no engine instance in current process, calling this API will create one. If an engine instance has been created, calling this API again will have the created engine instance returned.

Implementation

static Future<RTCVideo?> createRTCVideo(RTCVideoContext context) =>
    RTCVideoImpl.createRTCVideo(context);