UNPKG

react-native-notifications

Version:

Advanced Push Notifications (Silent, interactive notifications) for iOS & Android

21 lines (15 loc) 328 B
/** A wrapper to align Android with iOS in terms on notification structure. */ export default class NotificationAndroid { constructor(notification) { this.data = notification; } getData() { return this.data; } getTitle() { return this.data.title; } getMessage() { return this.data.body; } }