notify

This section is a work in progress.

Examples:

import { Canister, ic, update, Void } from 'azle';
import { otherCanister } from './otherCanister';

export default Canister({
    sendNotification: update([], Void, () => {
        return ic.notify(otherCanister.receiveNotification, {
            args: ['This is the notification']
        });
    })
});