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