FTooltipStyle constructor

const FTooltipStyle({
  1. required BoxDecoration decoration,
  2. required TextStyle textStyle,
  3. EdgeInsets margin = const EdgeInsets.all(4),
  4. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
})

Creates a FTooltipStyle.

Implementation

const FTooltipStyle({
  required this.decoration,
  required this.textStyle,
  this.margin = const EdgeInsets.all(4),
  this.padding = const EdgeInsets.symmetric(horizontal: 14, vertical: 10),
});