clearData method

bool clearData()

Implementation

bool clearData() {
  if (_closed) {
    throw const MutationClosedException();
  }
  bool updated = false;
  updated |= _updateData(null);
  updated |= _updateInitialized();
  return updated;
}