copyWith method
InternalLinkTypeAttachmentMenuBot
copyWith({
- TargetChat? targetChat,
- String? botUsername,
- String? url,
- dynamic extra,
- int? clientId,
override
Implementation
@override
InternalLinkTypeAttachmentMenuBot copyWith({
TargetChat? targetChat,
String? botUsername,
String? url,
dynamic extra,
int? clientId,
}) =>
InternalLinkTypeAttachmentMenuBot(
targetChat: targetChat ?? this.targetChat,
botUsername: botUsername ?? this.botUsername,
url: url ?? this.url,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);