identify method

void identify({
  1. String? userId,
  2. String? username,
})
override

Implementation

void identify({String? userId, String? username}) {
  _crashlytics.setUserIdentifier(userId!);
  if (username != null) {
    email = username;
  }
}