anrTimeoutIntervalMillis property

  1. @Deprecated('Use anrTimeoutInterval instead')
int anrTimeoutIntervalMillis

ANR Timeout internal in Millis Default is 5000 = 5s Used by AnrIntegration. Available only for Android. See: anrEnabled

Implementation

@Deprecated('Use anrTimeoutInterval instead')
int get anrTimeoutIntervalMillis => anrTimeoutInterval.inMilliseconds;
  1. @Deprecated('Use anrTimeoutInterval instead')
void anrTimeoutIntervalMillis=(int value)

Implementation

@Deprecated('Use anrTimeoutInterval instead')
set anrTimeoutIntervalMillis(int value) {
  assert(value > 0);
  anrTimeoutInterval =
      value > 0 ? Duration(milliseconds: value) : anrTimeoutInterval;
}