InternalLinkTypeAuthenticationCode.fromJson constructor
Parse from a json
Implementation
factory InternalLinkTypeAuthenticationCode.fromJson(
Map<String, dynamic> json) =>
InternalLinkTypeAuthenticationCode(
code: json['code'],
extra: json['@extra'],
clientId: json['@client_id'],
);