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