Could I use "busboy" with "Meteor.methods()"?

Could I use this with Meteor.methods()

// Client
var formData = new formData();
Meteor.call('myMethod', formData);

// Server
Meteor.methods({
   myMethod: function(formData){
      var busboy = new Busboy({ headers: req.headers });
      busboy.on('file', function(fieldname, file, filename, encoding, mimetype) {
      ....................................
   }
})

Please help me.