ChatMember class
Constructors
- ChatMember({required MessageSender memberId, required int inviterUserId, required int joinedChatDate, required ChatMemberStatus status, dynamic extra, int? clientId})
-
Describes a user or a chat as a member of another chat
const
-
ChatMember.fromJson(Map<
String, dynamic> json) -
Parse from a json
factory
Properties
- clientId → int?
-
clientId client identifier
final
- extra → dynamic
-
extra callback sign
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- inviterUserId → int
-
inviterUserId Identifier of a user that invited/promoted/banned this member in the chat; 0 if unknown
final
- joinedChatDate → int
-
joinedChatDate Point in time (Unix timestamp) when the user joined/was promoted/was banned in the chat
final
- memberId → MessageSender
-
memberId Identifier of the chat member. Currently, other chats can be only Left or Banned. Only supergroups and channels can have other chats as Left or Banned members and these chats must be supergroups or channels
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- status → ChatMemberStatus
-
status Status of the member in the chat
final
Methods
-
copyWith(
{MessageSender? memberId, int? inviterUserId, int? joinedChatDate, ChatMemberStatus? status, dynamic extra, int? clientId}) → ChatMember -
getConstructor(
) → String -
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
[dynamic extra]) → Map< String, dynamic> -
override
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- CONSTRUCTOR → const String