data property

ListTileThemeData data

The configuration of this theme.

Implementation

ListTileThemeData get data {
  return _data ?? ListTileThemeData(
    dense: _dense,
    shape: _shape,
    style: _style,
    selectedColor: _selectedColor,
    iconColor: _iconColor,
    textColor: _textColor,
    contentPadding: _contentPadding,
    tileColor: _tileColor,
    selectedTileColor: _selectedTileColor,
    enableFeedback: _enableFeedback,
    mouseCursor: _mouseCursor,
    horizontalTitleGap: _horizontalTitleGap,
    minVerticalPadding: _minVerticalPadding,
    minLeadingWidth: _minLeadingWidth,
  );
}