endTimedEventId static method

void endTimedEventId(
  1. String eventId,
  2. String timedId
)

Ends an existing timed event named eventId.

Ends the timed event eventId with the second key timedId. Ignores the action if event named eventId is already terminated.

Implementation

static void endTimedEventId(String eventId, String timedId) {
  flurryAgent?.endTimedEventId(eventId, timedId);
}