yXmlElementLength method
Implementation
int /*U32*/ yXmlElementLength({required YXmlElement ref, YTransaction? txn}) {
final results = _yXmlElementLength([
ref.toWasm(),
(txn == null
? const None().toWasm()
: Option.fromValue(txn).toWasm(YTransaction.toWasm)),
]);
final result = results[0];
return result! as int;
}