copyWith method
SetMessageSenderBotVerification
copyWith({
- int? botUserId,
- MessageSender? verifiedId,
- String? customDescription,
Implementation
SetMessageSenderBotVerification copyWith({
int? botUserId,
MessageSender? verifiedId,
String? customDescription,
}) => SetMessageSenderBotVerification(
botUserId: botUserId ?? this.botUserId,
verifiedId: verifiedId ?? this.verifiedId,
customDescription: customDescription ?? this.customDescription,
);