AlphabetsBarThemeData constructor

const AlphabetsBarThemeData({
  1. Color backgroundColor = Colors.transparent,
  2. Color selectedBackgroundColor = Colors.transparent,
  3. TextStyle style = const TextStyle(fontSize: 12),
  4. TextStyle selectedStyle = const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
})

Implementation

const AlphabetsBarThemeData({
  this.backgroundColor = Colors.transparent,
  this.selectedBackgroundColor = Colors.transparent,
  this.style = const TextStyle(fontSize: 12),
  this.selectedStyle =
      const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
});