copyWith method
Implementation
CustomFieldContextDefaultValueMultipleGroupPicker copyWith(
{String? contextId, List<String>? groupIds, String? type}) {
return CustomFieldContextDefaultValueMultipleGroupPicker(
contextId: contextId ?? this.contextId,
groupIds: groupIds ?? this.groupIds,
type: type ?? this.type,
);
}