setLicense method
Sets the Davoice native license.
Implementation
@override
Future<bool> setLicense(String licenseKey) async {
return await methodChannel.invokeMethod<bool>('setLicense', {
'licenseKey': licenseKey,
}) ??
false;
}