setLicence static method

Future<void> setLicence(
  1. String url,
  2. String key
)

Set the authorization license for the SDK Document address: https://cloud.tencent.com/document/product/454/34750

Parameter:

url licence url

key licence key

Implementation

static Future<void> setLicence(String url, String key) async {
  await V2TXLivePremier()._channel.invokeMethod("setLicence", {"url": url, "key": key});
}