copyWith method
Implementation
SetChatMemberTag copyWith({int? chatId, int? userId, String? tag}) =>
SetChatMemberTag(
chatId: chatId ?? this.chatId,
userId: userId ?? this.userId,
tag: tag ?? this.tag,
);
SetChatMemberTag copyWith({int? chatId, int? userId, String? tag}) =>
SetChatMemberTag(
chatId: chatId ?? this.chatId,
userId: userId ?? this.userId,
tag: tag ?? this.tag,
);