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