copyWith method

BusinessConnectedBot copyWith({
  1. int? botUserId,
  2. BusinessRecipients? recipients,
  3. BusinessBotRights? rights,
})

Implementation

BusinessConnectedBot copyWith({
  int? botUserId,
  BusinessRecipients? recipients,
  BusinessBotRights? rights,
}) => BusinessConnectedBot(
  botUserId: botUserId ?? this.botUserId,
  recipients: recipients ?? this.recipients,
  rights: rights ?? this.rights,
);