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