Parse from a json
factory KeyboardButton.fromJson(Map<String, dynamic> json) => KeyboardButton( text: json['text'], type: KeyboardButtonType.fromJson(json['type']), );