addOnBackgroundMessage method
Called when notification is received when app is terminated or in the background.
Implementation
VoidCallback addOnBackgroundMessage(MessageHandler handler) {
_sendAndroidReadyToProcessMessages();
_onBackgroundMessageHandlers.add(handler);
return () {
_onBackgroundMessageHandlers.remove(handler);
};
}