logSetCheckoutOption method
- @Deprecated('logSetCheckoutOption() has been deprecated.')
inherited
Logs the standard set_checkout_option
event. This event has been deprecated and is unsupported in updated Enhanced Ecommerce reports.
See: https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.Event.html#SET_CHECKOUT_OPTION
Implementation
@Deprecated('logSetCheckoutOption() has been deprecated.')
Future<void> logSetCheckoutOption({
required int checkoutStep,
required String checkoutOption,
Map<String, Object>? parameters,
}) {
_assertParameterTypesAreCorrect(parameters);
return _delegate.logEvent(
name: 'set_checkout_option',
parameters: filterOutNulls(<String, Object?>{
_CHECKOUT_STEP: checkoutStep,
_CHECKOUT_OPTION: checkoutOption,
if (parameters != null) ...parameters,
}),
);
}