drawLine method

Future<int?> drawLine(
  1. int x0,
  2. int y0,
  3. int x1,
  4. int y1,
  5. int lineWidth,
)

Implementation

Future<int?> drawLine(int x0, int y0, int x1, int y1, int lineWidth) {
  throw UnimplementedError('drawLine() has not been implemented.');
}