UserModel constructor

UserModel({
  1. String name = '',
  2. String id = '',
  3. AccountType accountType = AccountType.none,
  4. bool verified = false,
  5. String email = '',
  6. String imageUrl = '',
  7. String about = '',
})

Implementation

UserModel({
  this.name = '',
  this.id = '',
  this.accountType = AccountType.none,
  this.verified = false,
  this.email = '',
  this.imageUrl = '',
  this.about = '',
});