VolumeRendererStyle constructor

const VolumeRendererStyle({
  1. double width = 8.5,
  2. VolumeRendererColors colors = const VolumeRendererColors(),
  3. EdgeInsets padding = const EdgeInsets.only(left: 5, right: 5, top: 12),
  4. double fontSize = 10,
})

Implementation

const VolumeRendererStyle({
  this.width = 8.5,
  this.colors = const VolumeRendererColors(),
  super.padding = const EdgeInsets.only(left: 5, right: 5, top: 12),
  super.fontSize = 10
}) : super(colors: colors);