/** A wrapper to align Android with iOS in terms on notification structure. */exportdefaultclassNotificationAndroid{constructor(notification){this.data=notification;}getData(){returnthis.data;}getTitle(){returnthis.data.title;}getMessage(){returnthis.data.body;}}