Profile constructor

Profile({
  1. String? emailAddress,
  2. String? historyId,
  3. int? messagesTotal,
  4. int? threadsTotal,
})

Implementation

Profile({
  this.emailAddress,
  this.historyId,
  this.messagesTotal,
  this.threadsTotal,
});