setLimit method

void setLimit(
  1. int value
)

Implementation

void setLimit(int value) {
  assert(value >= 0);
  mLimit = value;
}