setUserId method

Future<void> setUserId({
  1. String? id,
  2. AnalyticsCallOptions? callOptions,
})

Sets the user id. Setting a null id removes the user id. callOptions are for web platform only.

Implementation

Future<void> setUserId({
  String? id,
  AnalyticsCallOptions? callOptions,
}) {
  throw UnimplementedError('setUserId() is not implemented');
}