isComplete property

bool isComplete

Returns true when the completeInterval is within the complete interval of the base map.

Implementation

bool get isComplete {
  if (_baseMap is! FilteredMap) return true;
  return (_baseMap as FilteredMap)
      .completeInterval
      .contains(completeInterval);
}