UserIdentity constructor Null safety

UserIdentity(
  1. {List<String>? phones,
  2. List<String>? emails,
  3. String? externalUserId}
)

Implementation

UserIdentity({
  this.phones,
  this.emails,
  this.externalUserId,
});