value property
set
value
(bool value)
Implementation
set value(bool value) => checkObx((_alias == null)
? C.query_param_int(
_query._ptr, _entityId, _prop._model.id.id, value ? 1 : 0)
: withNativeString(
_alias!,
(Pointer<Char> cAlias) =>
C.query_param_alias_int(_query._ptr, cAlias, value ? 1 : 0)));