setMaxReportNumEachTime method

AnalyticsConfigBuilder setMaxReportNumEachTime(
  1. int num
)

Implementation

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