ListTileAmazon constructor

const ListTileAmazon({
  1. Key? key,
  2. required Widget leading,
  3. required Widget title,
  4. Widget? trailing,
  5. Widget? overrideTitle,
  6. double? leftWidth,
  7. void onTap()?,
  8. Color? leftColor,
  9. Color? rightColor,
})

Implementation

const ListTileAmazon({
  Key? key,
  required this.leading,
  required this.title,
  this.trailing,
  this.overrideTitle,
  this.leftWidth,
  this.onTap,
  this.leftColor,
  this.rightColor,
}) : super(key: key);