endTimedEventWithParameters static method

void endTimedEventWithParameters(
  1. String eventId,
  2. Map<String, String> parameters
)

Ends a timed event and updated parameters.

Ends the timed event if the event was not terminated already. Updates the existing parameters to the new parameters Maximum of 10 unique parameters total can be passed for an event, including those passed when the event was initiated.

Implementation

static void endTimedEventWithParameters(
    String eventId, Map<String, String> parameters) {
  flurryAgent?.endTimedEventWithParameters(eventId, parameters);
}