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