I know it's been 2 months since you've posted this, but I found in the backbone radio documentation, you can just simply turn an event off.
const CustomBlurController = Marionette.Object.extend({
initialize: function() {
const fieldsChannel = Backbone.Radio.channel('fields');
fieldsChannel.off('blur:field');
},
});
new CustomBlurController();