LinearAxisTrackStyle constructor

const LinearAxisTrackStyle({
  1. double thickness = 5.0,
  2. LinearEdgeStyle edgeStyle = LinearEdgeStyle.bothFlat,
  3. Color? color,
  4. LinearGradient? gradient,
  5. Color? borderColor,
  6. double borderWidth = 0,
})

Creates a style for axis line.

Implementation

const LinearAxisTrackStyle({
  this.thickness = 5.0,
  this.edgeStyle = LinearEdgeStyle.bothFlat,
  this.color,
  this.gradient,
  this.borderColor,
  this.borderWidth = 0,
});