copyWith method

AddChatMember copyWith({
  1. int? chatId,
  2. int? userId,
  3. int? forwardLimit,
})

Implementation

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