unseal method

void unseal({
  1. bool unsealLines = false,
})

Implementation

void unseal({bool unsealLines = false}) {
  _sealed = false;
  if (unsealLines) {
    for (final Line line in _lines) {
      if (line.isSealed) line.unseal();
    }
  }
}