TUIKitDragArea constructor

const TUIKitDragArea({
  1. Key? key,
  2. required Widget child,
  3. Offset? initOffset,
  4. VoidCallback? closeFun,
  5. bool isAllowDrag = false,
  6. Color? backgroundColor,
})

Implementation

const TUIKitDragArea(
    {Key? key,
    required this.child,
    this.initOffset,
    this.closeFun,
    this.isAllowDrag = false, this.backgroundColor})
    : super(key: key);