CustomFieldContextDefaultValueURL.fromJson constructor

CustomFieldContextDefaultValueURL.fromJson(
  1. Map<String, Object?> json
)

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? ?? '',
  );
}