copyWith method

CustomFieldContextDefaultValueForgeMultiGroupField copyWith({
  1. String? contextId,
  2. List<String>? groupIds,
  3. String? type,
})

Implementation

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