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