setCallReportConfig method

void setCallReportConfig({
  1. int callReportInterval = 5000,
  2. String callReportLogLevel = 'debug',
  3. int callReportMaxLogEntries = 1000,
})

Set call report configuration from Config

Implementation

void setCallReportConfig({
  int callReportInterval = 5000,
  String callReportLogLevel = 'debug',
  int callReportMaxLogEntries = 1000,
}) {
  _callReportInterval = callReportInterval;
  _callReportLogLevel = callReportLogLevel;
  _callReportMaxLogEntries = callReportMaxLogEntries;
}