identify static method

Future<void> identify(
  1. String userId,
  2. Map<String, dynamic>? properties, [
  3. Map<String, dynamic>? otherIds
])

Implementation

static Future<void> identify(String userId, Map<String, dynamic>? properties,
    [Map<String, dynamic>? otherIds]) async {
  await methodChannel.invokeMethod('identify', <String, dynamic>{
    'userId': userId,
    'properties': properties ?? {},
    'otherIds': otherIds ?? {}
  });
}