XListTile constructor

const XListTile(
  1. {Key key,
  2. @required Color selectedColor,
  3. @required Color unSelectedColor,
  4. @required bool selected,
  5. FontWeight fontWeight,
  6. IconData icon,
  7. @required String text,
  8. double iconSize,
  9. Function onTap,
  10. Widget trailing,
  11. Widget subtitle}
)

Implementation

const XListTile(
    {Key key,
    @required this.selectedColor,
    @required this.unSelectedColor,
    @required this.selected,
    this.fontWeight,
    this.icon,
    @required this.text,
    this.iconSize,
    this.onTap,
    this.trailing,
    this.subtitle})
    : super(key: key);