SenderProfile constructor

SenderProfile({
  1. String id = '',
  2. String avatar = '',
  3. String firstName = '',
  4. String middleName = '',
  5. String lastName = '',
  6. String nickName = '',
  7. String userName = '',
})

Implementation

SenderProfile({
  this.id = '',
  this.avatar = '',
  this.firstName = '',
  this.middleName = '',
  this.lastName = '',
  this.nickName = '',
  this.userName = '',
});