GraphViewConfiguration constructor

const GraphViewConfiguration({
  1. Key? key,
  2. GraphViewThemeData? theme,
  3. GraphViewThemeData? darkTheme,
  4. bool useAppTheme = true,
  5. required Widget child,
})

Implementation

const GraphViewConfiguration({
  super.key,
  this.theme,
  this.darkTheme,
  this.useAppTheme = true,
  required super.child,
});