InternalLinkTypeGame.fromJson constructor

InternalLinkTypeGame.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory InternalLinkTypeGame.fromJson(Map<String, dynamic> json) =>
    InternalLinkTypeGame(
      botUsername: json['bot_username'],
      gameShortName: json['game_short_name'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );