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