BotShortDescription.fromJson constructor
Creates the Bot Short Description object from a JSON object.
Implementation
factory BotShortDescription.fromJson(Map<String, dynamic> json) {
return BotShortDescription(
shortDescription: json['short_description'] as String,
);
}