AlphabetChildrenStyle constructor

AlphabetChildrenStyle({
  1. double childWidth = 16,
  2. double childHeight = 16,
  3. double totalWidth = 16,
  4. double totalHeight = 450,
  5. EdgeInsetsGeometry? margin,
  6. Color selectBackgroundColor = Colors.black,
  7. Color unSelectBackgroundColor = Colors.white,
  8. Color selectTextColor = Colors.white,
  9. Color unSelectTextColor = Colors.black,
  10. TextDecoration textDecoration = TextDecoration.none,
  11. Axis alphabetDirection = Axis.vertical,
  12. Color? childrenBackgroundColor,
  13. double testSize = 10,
})

Implementation

AlphabetChildrenStyle({
  this.childWidth = 16,
  this.childHeight = 16,
  this.totalWidth = 16,
  this.totalHeight = 450,
  this.margin,
  this.selectBackgroundColor = Colors.black,
  this.unSelectBackgroundColor = Colors.white,
  this.selectTextColor = Colors.white,
  this.unSelectTextColor = Colors.black,
  this.textDecoration = TextDecoration.none,
  this.alphabetDirection = Axis.vertical,
  this.childrenBackgroundColor,
  this.testSize = 10,
});