drawInverseLine method

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

Implementation

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