pollRewardVerification static method
Polls the backend until reward verification completes, then returns the
result. Call when your ad network's reward callback fires, passing the
clientTransactionId from generateRewardVerificationToken.
Implementation
@experimental
static Future<RewardVerificationResult> pollRewardVerification(
String clientTransactionId,
) async {
final result = await _invokeReturningMap(
'pollRewardVerification',
{'clientTransactionId': clientTransactionId},
);
return RewardVerificationResult.fromMap(result);
}