UserModel constructor

const UserModel({
  1. String id = '',
  2. String username = '',
  3. ImageProvider<Object>? profilePicture,
})

Implementation

const UserModel({
  this.id = '',
  this.username = '',
  this.profilePicture,
});