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