GetCelebrityInfoResponse.fromJson constructor
Implementation
factory GetCelebrityInfoResponse.fromJson(Map<String, dynamic> json) {
return GetCelebrityInfoResponse(
name: json['Name'] as String?,
urls: (json['Urls'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}