Show Image in Local Notification

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');
        });

I don’t think you can as it has not been made available till now