Chat class

This class models a reference to an address.

Implemented types
Annotations

Constructors

Chat({required String chat, required String label})
A reference to an address.
const
Chat.fromMap(Map<String, dynamic> map)
Creates a Chat instance starting from a Map<String, dynamic> map.

Properties

chat String
The reference name to the chat.
final
hashCode int
The hash code for this object.
no setteroverride
label String
The chat label. It is useful for distinguishing different chats that belong to the same person.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

compareTo(covariant Chat other) int
The order of the comparisons is:
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
Creates a Map<String, dynamic> map representation of this instance.
toString() String
A string representation of this object.
inherited

Operators

operator <(covariant Chat other) bool
Returns if this instance is less than the other.
operator <=(covariant Chat other) bool
Return if this instance is less than or equal to the other.
operator ==(covariant Chat other) bool
The equality operator.
override
operator >(covariant Chat other) bool
Return if this instance is greater than the other.
operator >=(covariant Chat other) bool
Return if this instance is greater than or equal to the other.