sendHit method

Future<void> sendHit(
  1. BaseHit hit
)

Send hit

Implementation

Future<void> sendHit(BaseHit hit) async {
  // Delegate the action to strategy
  _visitorDelegate.sendHit(hit);
}