DragNub constructor

const DragNub({
  1. double? width,
  2. double? height,
  3. Color? color,
  4. double? borderWidth,
  5. Key? key,
})

✋ Drag Nub

Aa small, round "handle" indicator used to visualize the impression of a moving sheet or draggable material.

Implementation

const DragNub({
  this.width,
  this.height,
  this.color,
  this.borderWidth,
  Key? key,
}) : super(key: key);