HomeUserDTO constructor

const HomeUserDTO({
  1. String? userId,
  2. String? firstName,
  3. String? lastName,
  4. String? email,
  5. bool? isLoggedInUser,
  6. bool? isPendingUser,
  7. DateTime? invitationDate,
})

Implementation

const HomeUserDTO({
  this.userId,
  this.firstName,
  this.lastName,
  this.email,
  this.isLoggedInUser,
  this.isPendingUser,
  this.invitationDate,
});