marginLeft method

  1. @override
double marginLeft(
  1. bool drawText,
  2. double width,
  3. double height,
  4. double fontHeight,
  5. double textPadding,
)
override

Margin before the first bar

Implementation

@override
double marginLeft(
  bool drawText,
  double width,
  double height,
  double fontHeight,
  double textPadding,
) {
  if (!drawText || !drawSpacers) {
    return 0;
  }

  return fontHeight;
}