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