drawBox method

  1. @override
Future<void> drawBox(
  1. int x,
  2. int y,
  3. int width,
  4. int height,
  5. int thickness,
)
override

Implementation

@override
Future<void> drawBox(int x, int y, int width, int height, int thickness) {
  return methodChannel.invokeMethod<void>('drawBox', {'x': x, 'y': y, 'width': width, 'height': height, 'thickness': thickness});
}