close method

void close()

Implementation

void close() {
  if (link != null) {
    link!.close();
    link = null;
  }
}