fromJson static method
Implementation
static Website fromJson(Map json) => Website(
url: json['url'] as String,
label: Label.fromJson(
json['label'] as Map,
WebsiteLabel.values,
WebsiteLabel.homepage,
),
metadata: JsonHelpers.decode(json['metadata'], PropertyMetadata.fromJson),
);