openNotification function

void openNotification(
  1. Map<String, dynamic> data, {
  2. bool inBack = false,
})

Implementation

void openNotification(Map<String, dynamic> data, {bool inBack = false}) {
  InngageNotification.openCommonNotification(
    data: data,
    appToken: InngageProperties.appToken,
    inBack: inBack,
  );
}