copyWith method

SetBotInfoDescription copyWith({
  1. int? botUserId,
  2. String? languageCode,
  3. String? description,
})

Implementation

SetBotInfoDescription copyWith({
  int? botUserId,
  String? languageCode,
  String? description,
}) =>
    SetBotInfoDescription(
      botUserId: botUserId ?? this.botUserId,
      languageCode: languageCode ?? this.languageCode,
      description: description ?? this.description,
    );