RainbowBlockVisualizer constructor

const RainbowBlockVisualizer({
  1. Key? key,
  2. List<int> data = const [],
  3. int maxSample = 32,
  4. double blockHeight = 8,
  5. double blockSpacing = 1,
})

Implementation

const RainbowBlockVisualizer({
  super.key,
  this.data = const [],
  this.maxSample = 32,
  this.blockHeight = 8,
  this.blockSpacing = 1,
});