Website.fromJson constructor
Implementation
factory Website.fromJson(Map<String, dynamic> json) => Website(
(json['url'] as String?) ?? '',
label: _stringToWebsiteLabel[json['label'] as String? ?? ''] ??
WebsiteLabel.homepage,
customLabel: (json['customLabel'] as String?) ?? '',
);