setGlobalLicense static method

Future<void> setGlobalLicense(
  1. String licenceUrl,
  2. String licenceKey
)

Setting the global license

Implementation

static Future<void> setGlobalLicense(String licenceUrl, String licenceKey) async {
  await _pluginChannel.invoke<void>('setGlobalLicense', {
    'licenseUrl': licenceUrl,
    'licenseKey': licenceKey,
  });
}