fromJson static method

Website fromJson(
  1. Map json
)

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),
);