destroy method

  1. @override
void destroy()
override

Destroys the object.

This method should be overridden by subclasses to destroy the object. This super method handles the freeing of allocated pointers.

Implementation

@override
void destroy() {
  // Use parent's destroy implementation
  super.destroy();
}