maxCommitOps property
int
get
maxCommitOps
Implementation
int get maxCommitOps => _maxCommitOps;
set
maxCommitOps
(int value)
Implementation
set maxCommitOps(int value) {
assert(value >= 0);
if (value == maxCommitOps) return;
_maxCommitOps = value;
}