updatePostbackConversionValue method

void updatePostbackConversionValue(
  1. int fineValue,
  2. String coarseValue,
  3. 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,
  );
}