copyWith method

CustomFieldOption copyWith({
  1. String? self,
  2. String? value,
})

Implementation

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