void draw(BitmapDrawable source, [ Matrix matrix ])

Source

void draw(BitmapDrawable source, [Matrix matrix]) {
  var updateBatch = new BitmapDataUpdateBatch(this);
  updateBatch.draw(source, matrix);
  updateBatch.update();
}