yMapDelete method
Implementation
void yMapDelete({
required YMap ref,
required String key,
YTransaction? txn,
}) {
_yMapDelete([
ref.toWasm(),
key,
(txn == null
? const None().toWasm()
: Option.fromValue(txn).toWasm(YTransaction.toWasm))
]);
}