logAddToWishlist method
      
Future<void> 
logAddToWishlist({ 
    
- List<AnalyticsEventItem> ? items,
- double? value,
- String? currency,
- Map<String, Object> ? parameters,
- AnalyticsCallOptions? callOptions,
inherited
    Logs the standard add_to_wishlist event.
This event signifies that an item was added to a wishlist. Use this event
to identify popular gift items in your app. Note: If you supply the
value parameter, you must also supply the currency parameter so that
revenue metrics can be computed accurately.
Implementation
Future<void> logAddToWishlist({
  List<AnalyticsEventItem>? items,
  double? value,
  String? currency,
  Map<String, Object>? parameters,
  AnalyticsCallOptions? callOptions,
}) {
  _requireValueAndCurrencyTogether(value, currency);
  _assertParameterTypesAreCorrect(parameters);
  _assertItemsParameterTypesAreCorrect(items);
  return _delegate.logEvent(
    name: 'add_to_wishlist',
    parameters: filterOutNulls(<String, Object?>{
      _ITEMS: _marshalItems(items),
      _VALUE: value,
      _CURRENCY: currency,
      if (parameters != null) ...parameters,
    }),
    callOptions: callOptions,
  );
}