InlineKeyboardButton.fromJson constructor
Parse from a json
Implementation
factory InlineKeyboardButton.fromJson(Map<String, dynamic> json) => InlineKeyboardButton(
text: json['text'],
type: InlineKeyboardButtonType.fromJson(json['type']),
);
Parse from a json
factory InlineKeyboardButton.fromJson(Map<String, dynamic> json) => InlineKeyboardButton(
text: json['text'],
type: InlineKeyboardButtonType.fromJson(json['type']),
);