limitOverused property

bool limitOverused

Determines whether max value from data is greater than limit. If so - limit is overused. Otherwise - no.

Note that limit must not be null in order to call this.

Implementation

bool get limitOverused {
  assert(limit != null);

  return limit! < data.values.max;
}