checkNotFrozen method

void checkNotFrozen()

Implementation

void checkNotFrozen() {
  if (isFrozen) {
    throw ValidationError("$runtimeType already frozen!");
  }
}