handleObjNotificationForTest function

  1. @visibleForTesting
Future<void> handleObjNotificationForTest(
  1. AtCollection coll,
  2. AtNotification n
)

Routes n through coll's value-event branch directly — bypasses the regex dispatcher; tests exercise the value-handler in isolation.

Implementation

@visibleForTesting
Future<void> handleObjNotificationForTest(
  AtCollection<dynamic> coll,
  AtNotification n,
) =>
    coll._handleObjNotificationImpl(n);