AudioMessageStyle constructor

const AudioMessageStyle({
  1. Color playPauseIconColor = Colors.white,
  2. Color sliderColor = Colors.white70,
  3. Color inactiveColor = Colors.grey,
  4. Color downloadIconColor = Colors.white,
  5. TextStyle durationStyle = const TextStyle(color: Colors.white, fontSize: 12),
})

Implementation

const AudioMessageStyle({
  this.playPauseIconColor = Colors.white,
  this.sliderColor = Colors.white70,
  this.inactiveColor = Colors.grey,
  this.downloadIconColor = Colors.white,
  this.durationStyle = const TextStyle(
    color: Colors.white,
    fontSize: 12,
  ),
});