copyWith method

ToggleBotIsAddedToAttachmentMenu copyWith({
  1. int? botUserId,
  2. bool? isAdded,
  3. bool? allowWriteAccess,
})

Implementation

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