CustomFieldContextDefaultValueURL.fromJson constructor
Implementation
factory CustomFieldContextDefaultValueURL.fromJson(
Map<String, Object?> json) {
return CustomFieldContextDefaultValueURL(
contextId: json[r'contextId'] as String? ?? '',
type: json[r'type'] as String? ?? '',
url: json[r'url'] as String? ?? '',
);
}