sendNotification method
Implementation
sendNotification(String token, data) async {
final getConfig = Handlerz.fc!.config;
final firebaseMessagingService = FirebaseMessagingService();
await firebaseMessagingService.sendNotification(token: getConfig['token'], title: 'Error ${getConfig['name']}', body: 'you received an error ${getConfig['name']} platform ${getConfig['platform']}', data:data);
}