value property
Implementation
set value(List<int> value) => withNativeBytes(
Uint8List.fromList(value),
(Pointer<Uint8> ptr, int size) => checkObx((_alias == null)
? C.query_param_bytes(
_query._ptr, _entityId, _prop._model.id.id, ptr, size)
: withNativeString(
_alias!,
(Pointer<Char> cAlias) =>
C.query_param_alias_bytes(_query._ptr, cAlias, ptr, size))));