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