UserAttributes constructor

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

Implementation

UserAttributes({
  this.email,
  this.phone,
  this.password,
  this.nonce,
  this.data,
}) : assert(data == null || data is List || data is Map);