drawLine method

  1. @override
Future<void> drawLine(
  1. int x,
  2. int y,
  3. int xend,
  4. int yend,
  5. int thickness,
)
override

Implementation

@override
Future<void> drawLine(int x, int y, int xend, int yend, int thickness) {
  return methodChannel.invokeMethod<void>('drawLine', {'x': x, 'y': y, 'xend': xend, 'yend': yend, 'thickness': thickness});
}