“Дарт -деструктор” Ответ

Дарт -деструктор

there is no such. There is nothing like a destructor in Dart. 
JS garbage collector doesn't provide a way to implement this. 
Adorable Alpaca

Дарт -деструктор

Dart does not have destructors. 
Objects are automatically garbage collected when no longer referenced

In flutter we can do like for widget dispose:

@override
void dispose() {
	// your dispose part
	super.dispose();
}
Vel

Ответы похожие на “Дарт -деструктор”

Вопросы похожие на “Дарт -деструктор”

Смотреть популярные ответы по языку

Смотреть другие языки программирования