Notification with image

I’m getting proper notification with title and text message…but I want to change icon and show image in notification

$ionicPlatform.ready(function () {
FCMPlugin.onNotification(function (data) {
var d= data;
$cordovaLocalNotification.schedule({
id: d.notificationid,
title: d.title,
text: d.message,
sound: d.sound,
icon:’…img/logo.png’
}, $scope);
});
});

Hello,
Did you find any solutions with showing image inside notification?