CustomFieldContextDefaultValueTextField.fromJson constructor

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

Implementation

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