copyWith method
BotVerification
copyWith({
- int? botUserId,
- int? iconCustomEmojiId,
- FormattedText? customDescription,
Implementation
BotVerification copyWith({
int? botUserId,
int? iconCustomEmojiId,
FormattedText? customDescription,
}) => BotVerification(
botUserId: botUserId ?? this.botUserId,
iconCustomEmojiId: iconCustomEmojiId ?? this.iconCustomEmojiId,
customDescription: customDescription ?? this.customDescription,
);