GridLine constructor

const GridLine({
  1. required Color color,
  2. double width = 1,
  3. List<double>? dashArray,
  4. bool extendBehindLabels = false,
})

Creates a GridLine with the given properties.

Implementation

const GridLine({
  required this.color,
  this.width = 1,
  this.dashArray,
  this.extendBehindLabels = false,
});