addSessionProperty static method

void addSessionProperty(
  1. String name,
  2. String value
)

Allows you to associate parameters with a session.

Adds property name called name and property value called value.

Implementation

static void addSessionProperty(String name, String value) {
  flurryAgent?.addSessionProperty(name, value);
}