copyWith method

CustomFieldContextDefaultValueLabels copyWith({
  1. List<String>? labels,
  2. String? type,
})

Implementation

CustomFieldContextDefaultValueLabels copyWith(
    {List<String>? labels, String? type}) {
  return CustomFieldContextDefaultValueLabels(
    labels: labels ?? this.labels,
    type: type ?? this.type,
  );
}