stop method

Future<void> stop(
  1. String id,
  2. AnimatableProperty property
)

Stop animation on a property.

Implementation

Future<void> stop(String id, AnimatableProperty property) async {
  await send<void>('stop', windowId: id, params: {
    'property': property.name,
  });
}