copyWith method
Implementation
CustomFieldContextDefaultValueSingleGroupPicker copyWith(
{String? contextId, String? groupId, String? type}) {
return CustomFieldContextDefaultValueSingleGroupPicker(
contextId: contextId ?? this.contextId,
groupId: groupId ?? this.groupId,
type: type ?? this.type,
);
}