toString method
Generates a string representation of the User
.
Implementation
@override
String toString() {
return 'User{uid: $uid, name: $name, avatar: $avatar, link: $link, role: $role, status: $status, statusMessage: $statusMessage, lastActiveAt: $lastActiveAt, tags: $tags, hasBlockedMe: $hasBlockedMe, blockedByMe: $blockedByMe, metadata: $metadata}';
}