ZwapScrollControlsListTile constructor

ZwapScrollControlsListTile({
  1. Key? key,
  2. required String title,
  3. required String translateKeyFunction(
    1. String key
    )?,
  4. bool showScrollControls = true,
  5. bool leftEnabled = true,
  6. bool rigthEnabled = true,
  7. bool showViewAll = true,
  8. dynamic onLeftScrollControlTap()?,
  9. dynamic onRigthScrollControlTap()?,
  10. dynamic onViewAllTap()?,
  11. Widget? trailing,
  12. double? trailingPadding,
})

Implementation

ZwapScrollControlsListTile({
  Key? key,
  required this.title,
  required this.translateKeyFunction,
  this.showScrollControls = true,
  this.leftEnabled = true,
  this.rigthEnabled = true,
  this.showViewAll = true,
  this.onLeftScrollControlTap,
  this.onRigthScrollControlTap,
  this.onViewAllTap,
  this.trailing,
  this.trailingPadding,
}) : super(key: key);