setFlushInterval method

DatabucketsEventTrackerConfigBuilder setFlushInterval(
  1. int value
)

Implementation

DatabucketsEventTrackerConfigBuilder setFlushInterval(int value) {
  if (value < 1000) {
    throw ArgumentError('flushInterval must be >= 1000ms, got $value');
  }
  flushInterval = value;
  return this;
}