bar method
Implementation
Future<void> bar({
required int x,
required int y,
required int width,
int height = 2,
}) async {
Map<String, dynamic> params = {
"x": x,
"y": y,
"width": width,
"height": height,
};
await methodChannel.invokeMethod<void>('bar', params);
}