selectLongestNames property

bool? get selectLongestNames

Select the longest value from the different value sources and write it to the value field if comparison is done successfully. The parameter applies this logic to the personal names, such as given name, surname, surname and given name, middle name and etc.

Implementation

bool? get selectLongestNames => _selectLongestNames;
set selectLongestNames (bool? val)

Implementation

set selectLongestNames(bool? val) {
  _selectLongestNames = val;
  _set({"selectLongestNames": val});
}