stopAll method

Future<void> stopAll(
  1. String id
)

Stop all animations on a window.

Implementation

Future<void> stopAll(String id) async {
  await send<void>('stopAll', windowId: id);
}