User constructor

const User({
  1. String? email,
  2. String? phone,
  3. String? provider,
  4. List<String>? roles,
  5. bool? isActive,
  6. dynamic lastLogin,
  7. String? application,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
  10. String? id,
})

Implementation

const User({
  this.email,
  this.phone,
  this.provider,
  this.roles,
  this.isActive,
  this.lastLogin,
  this.application,
  this.createdAt,
  this.updatedAt,
  this.id,
});