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