CustomFieldContextDefaultValueForgeObjectField.fromJson constructor

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

Implementation

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