FastListItemDescriptor constructor

const FastListItemDescriptor({
  1. bool isDense = true,
  2. Widget? trailing,
  3. Widget? leading,
  4. EdgeInsets? padding,
  5. Color? selectionLabelColor,
  6. Color? selectionColor,
})

Implementation

const FastListItemDescriptor({
  this.isDense = true,
  this.trailing,
  this.leading,
  this.padding,
  this.selectionLabelColor,
  this.selectionColor,
});