unReadNotification method

void unReadNotification(
  1. String campaignId
)

Implementation

void unReadNotification(String campaignId) {
  try{
    if(!kIsWeb) {
      RefluttersdkPlatform.instance.unReadNotification(campaignId);
    }
  }catch(e){
    debugPrint("$e");
  }
}