ItemUser constructor

ItemUser({
  1. String userId = '',
  2. String description = '',
  3. String userName = '',
  4. String surName = '',
  5. String nickName = '',
  6. String avatar = '',
  7. int onlineStatus = 0,
  8. bool isAdmin = false,
  9. String name = '',
})

Implementation

ItemUser({
  this.userId = '',
  this.description = '',
  this.userName = '',
  this.surName = '',
  this.nickName = '',
  this.avatar = '',
  this.onlineStatus = 0,
  this.isAdmin = false,
  this.name = '',
});