AlphabetsBarThemes constructor

const AlphabetsBarThemes({
  1. bool visible = true,
  2. Color backgroundColor = Colors.transparent,
  3. Color selectedBackgroundColor = Colors.transparent,
  4. TextStyle textStyle = const TextStyle(fontSize: 12),
  5. TextStyle selectedTextStyle = const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
})

Implementation

const AlphabetsBarThemes({
  this.visible = true,
  this.backgroundColor = Colors.transparent,
  this.selectedBackgroundColor = Colors.transparent,
  this.textStyle = const TextStyle(fontSize: 12),
  this.selectedTextStyle = const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
});