stopAction method

void stopAction(
  1. RumActionType type,
  2. String name, [
  3. Map<String, Object?> attributes = const {}
])

Notifies that the User Action of type, named name has stopped. This is used to stop tracking long running user actions (e.g. "scroll"), started with startAction.

Implementation

void stopAction(RumActionType type, String name,
    [Map<String, Object?> attributes = const {}]) {
  wrap('rum.stopAction', logger, attributes, () {
    return _platform.stopAction(type, name, attributes);
  });
}