yXmlElementDelete method
void
yXmlElementDelete({
- required YXmlElement ref,
- required int index_,
- required int length,
- YTransaction? txn,
Implementation
void yXmlElementDelete({
required YXmlElement ref,
required int /*U32*/ index_,
required int /*U32*/ length,
YTransaction? txn,
}) {
_yXmlElementDelete([
ref.toWasm(),
index_,
length,
(txn == null
? const None().toWasm()
: Option.fromValue(txn).toWasm(YTransaction.toWasm))
]);
}