copyWith method

GetBotSimilarBotCount copyWith({
  1. int? botUserId,
  2. bool? returnLocal,
})

Implementation

GetBotSimilarBotCount copyWith({int? botUserId, bool? returnLocal}) =>
    GetBotSimilarBotCount(
      botUserId: botUserId ?? this.botUserId,
      returnLocal: returnLocal ?? this.returnLocal,
    );