AxisLabel constructor

AxisLabel(
  1. TextStyle labelStyle,
  2. Size labelSize,
  3. String text,
  4. num value,
  5. String? trimmedText,
  6. String renderText,
)

Creating an argument constructor of AxisLabel class.

Implementation

AxisLabel(
  this.labelStyle,
  this.labelSize,
  this.text,
  this.value,
  this.trimmedText,
  this.renderText,
);