copyWith method
Implementation
ToggleBotIsAddedToAttachmentMenu copyWith({
int? botUserId,
bool? isAdded,
bool? allowWriteAccess,
}) =>
ToggleBotIsAddedToAttachmentMenu(
botUserId: botUserId ?? this.botUserId,
isAdded: isAdded ?? this.isAdded,
allowWriteAccess: allowWriteAccess ?? this.allowWriteAccess,
);