updatePostbackConversionValue method
void
updatePostbackConversionValue(
- int fineValue,
- String coarseValue,
- ErrorCallback completionHandler
Implementation
void updatePostbackConversionValue(
int fineValue, String coarseValue,
ErrorCallback completionHandler,
) {
final Map<String, dynamic> value = {
DataName.FINE_VALUE: fineValue,
DataName.COARSE_VALUE: coarseValue,
};
nativeCallbackOnce(
AffiseApiMethod.SKAD_POSTBACK_ERROR_CALLBACK,
completionHandler,
value,
);
}