CustomFieldContextDefaultValueForgeStringField.fromJson constructor

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

Implementation

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