copyWith method

OpenBotSimilarBot copyWith({
  1. int? botUserId,
  2. int? openedBotUserId,
})

Implementation

OpenBotSimilarBot copyWith({int? botUserId, int? openedBotUserId}) =>
    OpenBotSimilarBot(
      botUserId: botUserId ?? this.botUserId,
      openedBotUserId: openedBotUserId ?? this.openedBotUserId,
    );