TMeUrls.fromJson constructor

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

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'],
    );