finalize method

dynamic finalize()

Implementation

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