finalize method

dynamic finalize()

Implementation

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