sendNotification method
Send a notification (fire-and-forget, no response expected).
Implementation
void sendNotification(String method, [dynamic params]) {
final notification = BridgeNotification(method: method, params: params);
_send(notification.toJson());
}