acknowledgeLocations method
Implementation
@override
Future<void> acknowledgeLocations(Iterable<String> eventIds) async {
_throwIfScheduled('acknowledgeLocations');
final ids = eventIds.toSet();
calls.add(FakeTrackingCall('acknowledgeLocations', <String, Object?>{
'count': ids.length,
}));
pending.removeWhere((sample) => ids.contains(sample.eventId));
}