setLicenseKey method

Future<int> setLicenseKey({
  1. required String licenseKey,
})

Sets the PortSIP license key.

This should be called after initialize and before register.

Parameters:

  • licenseKey: The PortSIP license key

Returns 0 on success, negative error code on failure.

Implementation

Future<int> setLicenseKey({required String licenseKey}) async {
  throw UnimplementedError('setLicenseKey has not been implemented.');
}