NiceFunnel constructor

const NiceFunnel({
  1. Key? key,
  2. required List<NiceFunnelStage> data,
  3. double width = 400,
  4. double height = 300,
  5. String? title,
  6. bool showLabels = true,
  7. bool showValues = true,
})

Implementation

const NiceFunnel({
  super.key,
  required this.data,
  this.width = 400,
  this.height = 300,
  this.title,
  this.showLabels = true,
  this.showValues = true,
});