TMeUrls.fromJson constructor
Parse from a json
Implementation
factory TMeUrls.fromJson(Map<String, dynamic> json) => TMeUrls(
urls: List<TMeUrl>.from((json['urls'] ?? []).map((item) => TMeUrl.fromJson(item)).toList()),
extra: json['@extra'],
clientId: json['@client_id'],
);