copyWith method

SetMessageSenderBotVerification copyWith({
  1. int? botUserId,
  2. MessageSender? verifiedId,
  3. String? customDescription,
})

Implementation

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