GetActiveNamesResult.fromJson constructor
Implementation
factory GetActiveNamesResult.fromJson(Map<String, dynamic> json) {
return GetActiveNamesResult(
activeNames: (json['activeNames'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
nextPageToken: json['nextPageToken'] as String?,
);
}