copyWith method

RemoveMessageSenderBotVerification copyWith({
  1. int? botUserId,
  2. MessageSender? verifiedId,
})

Implementation

RemoveMessageSenderBotVerification copyWith({
  int? botUserId,
  MessageSender? verifiedId,
}) => RemoveMessageSenderBotVerification(
  botUserId: botUserId ?? this.botUserId,
  verifiedId: verifiedId ?? this.verifiedId,
);