notify
This section is a work in progress.
Examples:
import { Canister, ic, update, Void } from 'azle/experimental';
import { otherCanister } from './otherCanister';
export default Canister({
sendNotification: update([], Void, () => {
return ic.notify(otherCanister.receiveNotification, {
args: ['This is the notification']
});
})
});