CustomFieldContextDefaultValueForgeGroupField.fromJson constructor

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

Implementation

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