logStandardEvent static method
Records a Flurry standard event.
Records a standard parameterized event specified by event type named id
and maximum of 10 parameters passed as param
. Returns the event recording
status of the logged standard event.
Implementation
static Future<EventRecordStatus> logStandardEvent(
FlurryEvent id, Param param) async {
if (flurryAgent != null) {
int eventRecordStatus = await flurryAgent!.logStandardEvent(id, param);
return EventRecordStatus.values[eventRecordStatus];
}
return EventRecordStatus.eventFailed;
}