canAdd property

bool get canAdd

Implementation

bool get canAdd {
  final max = config.max;
  return (max == null || max < count) && isFull;
}