enableDashedHighlightLine method

void enableDashedHighlightLine(
  1. double lineLength,
  2. double spaceLength,
  3. double phase
)

Enables the highlight-line to be drawn in dashed mode, e.g. like this "- - - - - -"

@param lineLength the length of the line pieces @param spaceLength the length of space inbetween the line-pieces @param phase offset, in degrees (normally, use 0)

Implementation

void enableDashedHighlightLine(
    double lineLength, double spaceLength, double phase) {
  _highlightDashPathEffect = DashPathEffect(lineLength, spaceLength, phase);
}