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