DrawTickLabel<T> constructor

const DrawTickLabel<T>({
  1. Key? key,
  2. required T label,
  3. String labelFormatter(
    1. T label
    )?,
  4. TextStyle? labelStyle,
})

Implementation

const DrawTickLabel({
  super.key,
  required this.label,
  this.labelFormatter,
  this.labelStyle,
});