InternalLinkTypeAuthenticationCode.fromJson constructor

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

Parse from a json

Implementation

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