copyWith method

CustomFieldOptionUpdate copyWith({
  1. bool? disabled,
  2. String? id,
  3. String? value,
})

Implementation

CustomFieldOptionUpdate copyWith(
    {bool? disabled, String? id, String? value}) {
  return CustomFieldOptionUpdate(
    disabled: disabled ?? this.disabled,
    id: id ?? this.id,
    value: value ?? this.value,
  );
}