setKeywordLicense method

Future<bool> setKeywordLicense(
  1. String license
)

Alias for setKeywordDetectionLicense, matching the React Native API.

Implementation

Future<bool> setKeywordLicense(String license) async {
  await _methodChannel.invokeMethod('setKeywordLicense', {
    'instanceId': instanceId,
    'license': license,
  });
  return true;
}