I have to display an image in notification…and my code is
$cordovaLocalNotification.schedule({
id: $scope.data.notificationid,
title: $scope.data.title,
text: $scope.data.message,
icon: 'res://icon',
smallIcon: 'res://icon',
image: $scope.data.image
}).then(function (result) {
console.log('Notification 1 triggered');
});