ListTileSelectedBackgroundColoredBox constructor

const ListTileSelectedBackgroundColoredBox({
  1. Key? key,
  2. required ListTile listTile,
  3. Color? color,
  4. EdgeInsetsGeometry? padding,
  5. BorderRadius? borderRadius,
})

Implementation

const ListTileSelectedBackgroundColoredBox({
  super.key,
  required this.listTile,
  this.color,
  this.padding,
  this.borderRadius,
});