setSubId method

Future<void> setSubId(
  1. String subId
)

Sets the subscription ID for tracking purposes.

This method allows you to set a sub ID after the SDK has been initialized.

Throws an UnimplementedError if the platform-specific implementation has not been provided.

Implementation

Future<void> setSubId(String subId) {
  throw UnimplementedError('setSubId() has not been implemented.');
}