copyWith method

BotVerification copyWith({
  1. int? botUserId,
  2. int? iconCustomEmojiId,
  3. FormattedText? customDescription,
})

Implementation

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