what is the reassemble(https://api.flutter.dev/flutter/widgets/State/reassemble.html) equivalent in Getx? How can I track hot reload?
thanks:)
this is the part of code what i would like to done with Get:
@override
void reassemble() {
super.reassemble();
if (Platform.isAndroid) {
controller.pauseCamera();
}
controller.resumeCamera();
}