setMinReportInterval method
Implementation
AnalyticsConfigBuilder setMinReportInterval(int seconds) {
if (seconds <= 0) {
throw ArgumentError(
"minReportInterval must be positive, but got $seconds");
}
minReportInterval = seconds;
return this;
}