FastListItemLayout constructor

FastListItemLayout({
  1. Key? key,
  2. required String labelText,
  3. bool capitalizeLabelText = true,
  4. double minLeadingWidth = 16.0,
  5. bool isEnabled = true,
  6. bool isDense = true,
  7. Color? selectionLabelColor,
  8. String? descriptionText,
  9. EdgeInsets? contentPadding,
  10. Color? selectionColor,
  11. FastListItemDescriptor? descriptor,
  12. Widget? trailing,
  13. Widget? leading,
  14. VoidCallback? onTap,
})

Implementation

FastListItemLayout({
  Key? key,
  required this.labelText,
  this.capitalizeLabelText = true,
  this.minLeadingWidth = 16.0,
  this.isEnabled = true,
  this.isDense = true,
  this.selectionLabelColor,
  this.descriptionText,
  this.contentPadding,
  this.selectionColor,
  this.descriptor,
  this.trailing,
  this.leading,
  this.onTap,
}) : super(key: key);