CustomDraggable constructor

const CustomDraggable({
  1. required Widget child,
  2. required Key key,
  3. Object? data,
})

Implementation

const CustomDraggable({
  required this.child,
  required Key key,
  this.data,
}) : super(key: key);