find method

List<String> find({
  1. String? replaceNullWith,
})

Returns values of this property matching the query.

Results are in no particular order. Excludes null values unless you specify replaceNullWith.

Implementation

List<String> find({String? replaceNullWith}) {
  final cDefault = replaceNullWith?.toNativeUtf8().cast<Char>();

  return _find(
      C.query_prop_find_strings,
      cDefault,
      (Pointer<OBX_string_array> cItems) => cItems.toDartStrings(),
      C.string_array_free);
}