Ios push notification using firebase

Im using push notification using firebase and having a problem in ios push notification icon. Can anyone help me out how to set push notification icon for ios ?

Hi, @jagadishlal
If you are using Firebase push notification.

const cloudSettings: CloudSettings = {
  'core': {
    'app_id': 'APP_ID',
  },
  'push': {
    'sender_id': 'SENDER_ID',
    'pluginConfig': {
      'ios': {
        'badge': true,
         "icon": "notification_icon.png",
        'sound': true
      },
      'android': {
           "icon": "notification_icon.png",
            'iconColor': '#343434'
      }
    }
  }
};

Thanks

Thank you so much.let me try this

i got push notification icon by adding small size icon image in my config.xml fileā€¦