UserResponse constructor

UserResponse({
  1. String? id,
  2. String? email,
  3. String? firstName,
  4. String? lastName,
  5. bool? emailVerified,
  6. DateTime? lastLoginAt,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
})

Returns a new UserResponse instance.

Implementation

UserResponse({
  this.id,
  this.email,
  this.firstName,
  this.lastName,
  this.emailVerified,
  this.lastLoginAt,
  this.createdAt,
  this.updatedAt,
});