SimpleGraph constructor

const SimpleGraph({
  1. Key? key,
  2. required List<Offset> data,
  3. double height = 300,
  4. EdgeInsets padding = const EdgeInsets.all(30),
})

Implementation

const SimpleGraph({
  super.key,
  required this.data,
  this.height = 300,
  this.padding = const EdgeInsets.all(30),
});