toInAppNotification function

InAppNotification toInAppNotification(
  1. AppNotification notification
)

Implementation

InAppNotification toInAppNotification(AppNotification notification) {
  return InAppNotification(
    title: notification.getDisplayTitle(),
    subtitle: notification.getFullDisplayBody(),
  );
}