setCustomerUserId method

Future<void> setCustomerUserId(
  1. String? customerUserId
)

Set — or clear — the customer user id after configure

A null or blank id is an explicit clear here, not "not provided".

Implementation

Future<void> setCustomerUserId(String? customerUserId) {
  throw UnimplementedError('setCustomerUserId() has not been implemented.');
}