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