yArrayPush method
Implementation
void yArrayPush({
required YArray ref,
required JsonArray items,
YTransaction? txn,
}) {
_yArrayPush([
ref.toWasm(),
items.toWasm(),
(txn == null
? const None().toWasm()
: Option.fromValue(txn).toWasm(YTransaction.toWasm))
]);
}