SimpleGraph constructor
const
SimpleGraph({
- Key? key,
- required List<
Offset> data, - double height = 300,
- EdgeInsets padding = const EdgeInsets.all(30),
Implementation
const SimpleGraph({
super.key,
required this.data,
this.height = 300,
this.padding = const EdgeInsets.all(30),
});