copyWith method

CustomFieldContextDefaultValueSingleOption copyWith({
  1. String? contextId,
  2. String? optionId,
  3. String? type,
})

Implementation

CustomFieldContextDefaultValueSingleOption copyWith(
    {String? contextId, String? optionId, String? type}) {
  return CustomFieldContextDefaultValueSingleOption(
    contextId: contextId ?? this.contextId,
    optionId: optionId ?? this.optionId,
    type: type ?? this.type,
  );
}