style property

  1. @override
ListTileStyle style
override

The ListTileStyle to be applied to the ListTile widget

Implementation

@override
get style => const ListTileStyle(
      margin: EdgeInsets.zero,
      spacing: 0.0,
      spacingEnforced: true,
      crossAxisAlignment: CrossAxisAlignment.center,
      mainAxisAlignment: MainAxisAlignment.start,
      mainAxisExpanded: true,
      childExpanded: true,
      textAlign: TextTileAlign.left,
      textMargin: EdgeInsets.zero,
      textSpacing: 0.0,
    ).merge(super.style);