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