FlBorderData constructor

FlBorderData({
  1. bool? show,
  2. Border? border,
})

show Determines showing or hiding border around the chart. border Determines the visual look of 4 borders, see Border.

Implementation

FlBorderData({
  bool? show,
  Border? border,
})  : show = show ?? true,
      border = border ?? Border.all();