identify method
Implementation
void identify({required String userId, String? username}) {
_onEach((p) {
p.identify(userId: userId, username: username);
if (username != null) {
p.setUserProperties({"username": username});
}
});
}