onDrop property

Fired at the end of the drag operation when the Draggable is dropped inside this Dropzone.

Implementation

Stream<DropzoneEvent> get onDrop {
  if (_onDrop == null) {
    _onDrop = StreamController<DropzoneEvent>.broadcast(
        sync: true, onCancel: () => _onDrop = null);
  }
  return _onDrop!.stream;
}