ListTileStyle.from constructor

ListTileStyle.from(
  1. ListTileStyle? other
)

Create a ListTileStyle from another style

Implementation

ListTileStyle.from(ListTileStyle? other)
    : margin = other?.margin,
      spacing = other?.spacing,
      spacingEnforced = other?.spacingEnforced,
      crossAxisAlignment = other?.crossAxisAlignment,
      mainAxisAlignment = other?.mainAxisAlignment,
      mainAxisExpanded = other?.mainAxisExpanded,
      childExpanded = other?.childExpanded,
      textAlign = other?.textAlign,
      textMargin = other?.textMargin,
      textSpacing = other?.textSpacing;