drawLine method
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});
}
@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});
}