identify static method
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 ?? {}
});
}