AdsterNativeCustomAdData.fromJson constructor
Implementation
factory AdsterNativeCustomAdData.fromJson(Map<String, dynamic> json) {
return AdsterNativeCustomAdData(
widgetId: json['widgetId'] as String,
customFormatId: json['customFormatId'] as String?,
availableAssetNames:
(json['availableAssetNames'] as List<dynamic>? ?? const [])
.map((value) => value.toString())
.toList(),
);
}