onSendError property
EventStream<OnSendErrorError>
get
onSendError
Fired when it was not possible to send a message to the FCM server.
Implementation
EventStream<OnSendErrorError> get onSendError =>
$js.chrome.gcm.onSendError.asStream(($c) => ($js.OnSendErrorError error) {
return $c(OnSendErrorError.fromJS(error));
});