GraphWidget constructor
const
GraphWidget({})
Creates a GraphWidget with the specified graphController
and size
.
Implementation
const GraphWidget({
Key? key,
required graphController,
this.size = const Size(100, 100),
}) : _graphController = graphController,
super(key: key);