onSendImpressionStatus method

Future<void> onSendImpressionStatus(
  1. String updateId
)

Sends the impression status for a specific updateId. The update ID can be obtained from instances of AppUpdateData and AppticsAppUpdateNotSupported. This method calls the platform-specific implementation to send the impression status with the provided update ID.

Implementation

Future<void> onSendImpressionStatus(String updateId) async {
  return AppticsFlutterPlatform.instance.onSendImpressionStatus(updateId);
}