copyWith method

SetBotInfoShortDescription copyWith({
  1. int? botUserId,
  2. String? languageCode,
  3. String? shortDescription,
})

Implementation

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