fromJson static method
Creates a object from a json
Implementation
static BotCommand fromJson(Map<String, dynamic> json) {
return BotCommand(
command: json['command']!,
description: json['description']!,
);
}
Creates a object from a json
static BotCommand fromJson(Map<String, dynamic> json) {
return BotCommand(
command: json['command']!,
description: json['description']!,
);
}