copyWith method
Implementation
AddChatMember copyWith({int? chatId, int? userId, int? forwardLimit}) =>
AddChatMember(
chatId: chatId ?? this.chatId,
userId: userId ?? this.userId,
forwardLimit: forwardLimit ?? this.forwardLimit,
);