XPick constructor

const XPick({
  1. Key? key,
  2. required Widget child,
  3. bool? expanded,
  4. bool? listview,
  5. bool? clipoval,
})

Implementation

const XPick({
  super.key,
  required this.child,
  this.expanded,
  this.listview,
  this.clipoval,
});