copyWith method
UpdateAttachmentMenuBots
copyWith({
- List<
AttachmentMenuBot> ? bots, - dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateAttachmentMenuBots copyWith({
List<AttachmentMenuBot>? bots,
dynamic extra,
int? clientId,
}) =>
UpdateAttachmentMenuBots(
bots: bots ?? this.bots,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);