User constructor
User({})
Constructs a new User
instance.
Requires uid
and name
to be specified. Other properties are optional.
Implementation
User({
this.uid = "",
required this.name,
this.avatar,
this.link,
this.role,
this.status,
this.statusMessage,
this.lastActiveAt,
this.tags,
this.metadata,
this.hasBlockedMe,
this.blockedByMe,
});