locate method

bool locate(
  1. List<GenericField> fields
)

Implementation

bool locate(List<GenericField> fields) {
  var x = locateField(fields);
  if (x >= 0) {
    _rowIndex = x;
    return true;
  } else {
    return false;
  }
}