copyWith method

Implementation

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