TooltipSettings constructor

const TooltipSettings({
  1. Color backgroundColor = Colors.black,
  2. TextStyle textStyle = const TextStyle(color: Colors.white),
})

Implementation

const TooltipSettings({
  this.backgroundColor = Colors.black,
  this.textStyle = const TextStyle(color: Colors.white),
});