VxOrderedList constructor

const VxOrderedList(
  1. List<String> items, {
  2. Key? key,
  3. VxListType type = VxListType.decimal,
  4. EdgeInsetsGeometry? padding,
  5. Color color = Colors.black,
  6. double? fontSize = 14.0,
  7. bool? primary = false,
  8. bool shrinkWrap = true,
  9. ScrollPhysics? physics,
  10. Axis direction = Axis.vertical,
  11. bool isExpandedChild = false,
})

Implementation

const VxOrderedList(
  this.items, {
  super.key,
  this.type = VxListType.decimal,
  this.padding,
  this.color = Colors.black,
  this.fontSize = 14.0,
  this.primary = false,
  this.shrinkWrap = true,
  this.physics,
  this.direction = Axis.vertical,
  this.isExpandedChild = false,
});