UL constructor

UL({
  1. List<Widget>? children,
  2. double padding = 8,
  3. double spacing = 8,
  4. SymbolType symbolType = SymbolType.Bullet,
  5. Color? symbolColor,
  6. Color? textColor,
  7. Widget? customSymbol,
  8. String? prefixText,
  9. EdgeInsets? edgeInsets,
  10. CrossAxisAlignment? symbolCrossAxisAlignment,
  11. Key? key,
})

Implementation

UL({
  this.children,
  this.padding = 8,
  this.spacing = 8,
  this.symbolType = SymbolType.Bullet,
  this.symbolColor,
  this.textColor,
  this.customSymbol,
  this.prefixText,
  this.edgeInsets,
  this.symbolCrossAxisAlignment,
  super.key,
});