CustomFieldContextDefaultValueSingleGroupPicker.fromJson constructor

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

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? ?? '',
  );
}