drawBorderLine abstract method

void drawBorderLine({
  1. required Position from,
  2. required Position to,
  3. required BorderCharSet style,
  4. Color color,
  5. BorderDrawIdentifier drawId,
})

Draws a border line between two points.

The line is drawn from from to to using the specified style and color. The drawId helps manage line intersections.

Implementation

void drawBorderLine({
  required Position from,
  required Position to,
  required BorderCharSet style,
  Color color,
  BorderDrawIdentifier drawId,
});