CustomFieldContextDefaultValueReadOnly.fromJson constructor

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

Implementation

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