maxDataSize property

int maxDataSize

Bugsee will avoid using more disk space than specified (in MB). If total Bugsee data size exceeds specified value, oldest recordings (even not sent) will be removed. Value should not be smaller than 10.

Implementation

int get maxDataSize => tryCast(this["MaxDataSize"], constOptionMaxDataSize);
void maxDataSize=(int value)

Implementation

set maxDataSize(int value) {
  this["MaxDataSize"] = value;
}