CustomFieldContextDefaultValueForgeStringField.fromJson constructor
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? ?? '',
);
}