fromJson static method
Implementation
static ConnectedWebsites? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return ConnectedWebsites(
websites: List<ConnectedWebsite>.from(
tdListFromJson(json['websites'])
.map((item) => ConnectedWebsite.fromJson(tdMapFromJson(item)))
.whereType<ConnectedWebsite>(),
),
);
}