getUnClickedCount method
Implementation
Future<int> getUnClickedCount() async {
int count = 0;
if (Platform.isAndroid) {
count = await _androidInbox.getUnClickedCount();
} else if (Platform.isIOS) {
count = await _iOSInbox.getUnClickedCount();
}
return count;
}