setContinueSessionMillis static method

void setContinueSessionMillis([
  1. int sessionMillis = 10000
])

Sets the timeout for expiring a Flurry session.

Sets the time the app may be in the background before starting a new session upon resume. Default is set to 10 seconds in background.

Implementation

static void setContinueSessionMillis([int sessionMillis = 10000]) {
  flurryAgent?.setContinueSessionMillis(sessionMillis);
}