find method
- @override
- {String replaceNullWith}
override
Returns values of this property matching the query.
Results are in no particular order. Excludes null values.
Set replaceNullWith
to return null values as that value.
Implementation
@override
List<String> find({String replaceNullWith}) {
final ptr = replaceNullWith != null
? Utf8.toUtf8(replaceNullWith).cast<Int8>()
: Pointer<Int8>.fromAddress(0);
return _unpack(_curryWithDefault<OBX_string_array, Int8>(
bindings.obx_query_prop_find_strings, ptr, 'find utf8'));
}