UserInfoPublic class

Information about a user that can safely be publically accessible.

Inheritance

Constructors

UserInfoPublic({int? id, required String userName, String? fullName, required DateTime created, String? imageUrl})
UserInfoPublic.fromJson(Map<String, dynamic> jsonSerialization, SerializationManager serializationManager)
factory

Properties

created DateTime
The time when the user was created.
read / write
fullName String?
The full name of the user.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
id int?
Id of the user, if known.
read / write
imageUrl String?
URL to the user's avatar.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
userName String
The first name or nickname of the user.
read / write

Methods

allToJson() Map<String, dynamic>
Returns a serialized JSON structure of the entity which also includes fields used by the database.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns a serialized JSON structure of the entity, ready to be sent through the API. This does not include fields that are marked as database only.
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited