copyWith method

CustomFieldContextDefaultValueForgeStringField copyWith({
  1. String? contextId,
  2. String? text,
  3. String? type,
})

Implementation

CustomFieldContextDefaultValueForgeStringField copyWith(
    {String? contextId, String? text, String? type}) {
  return CustomFieldContextDefaultValueForgeStringField(
    contextId: contextId ?? this.contextId,
    text: text ?? this.text,
    type: type ?? this.type,
  );
}