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