UserAttributes constructor

UserAttributes({
  1. String? email,
  2. String? phone,
  3. String? password,
  4. String? emailChangeToken,
  5. dynamic data,
})

Implementation

UserAttributes({
  this.email,
  this.phone,
  this.password,
  this.emailChangeToken,
  this.data,
});