reportOfferViewed method

Future<void> reportOfferViewed({
  1. String? productId,
  2. int? variantId,
  3. String? flowType,
})

Report that an offer was viewed by the user. All parameters are optional; when omitted the native SDK resolves the active offer automatically.

Implementation

Future<void> reportOfferViewed({String? productId, int? variantId, String? flowType}) {
  throw UnimplementedError('reportOfferViewed() has not been implemented.');
}