copyWith method
Implementation
CustomFieldOption copyWith({String? self, String? value}) {
return CustomFieldOption(
self: self ?? this.self,
value: value ?? this.value,
);
}
CustomFieldOption copyWith({String? self, String? value}) {
return CustomFieldOption(
self: self ?? this.self,
value: value ?? this.value,
);
}