isZombie method
Verifica si esta instancia es un zombie.
Si es zombie:
- Se ejecuta dispose()
- Se marca como procesado
- Retorna true
Si no es zombie:
- Retorna false
Implementation
bool isZombie() {
return isZombieInstance(instance: this, releaseFn: dispose);
}