finalize method

void finalize()

Implementation

void finalize() {
  if (object != null) {
    object!._finalize(true);
  }
}