User constructor

User({
  1. String? id,
  2. String? email,
  3. String? phone,
  4. Map<String, String>? alias,
  5. Map<String, dynamic>? attributes,
})

Implementation

User({
  this.id,
  this.email,
  this.phone,
  this.alias,
  this.attributes,
});