copyWith method

SetChatMemberTag copyWith({
  1. int? chatId,
  2. int? userId,
  3. String? tag,
})

Implementation

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