Chart constructor

const Chart({
  1. Duration duration = const Duration(milliseconds: 300),
  2. List<ChartLayer> layers = const [],
  3. EdgeInsets padding = EdgeInsets.zero,
  4. Key? key,
})

Implementation

const Chart({
  this.duration = const Duration(
    milliseconds: 300,
  ),
  this.layers = const [],
  this.padding = EdgeInsets.zero,
  Key? key,
}) : super(key: key);