isGrowable property

bool isGrowable

Implementation

bool get isGrowable {
  try {
    add(null);
    removeLast();
    return true;
  } catch (e) {
    return false;
  }
}