You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose I have a method as below, which is executed in the background service:
void showLog() { print('test1'); }
During the debug app, I have to change to the following code:
void showLog() { print('test2'); }
Now I perform hot reload or hot restart and I see 'test1' in the console. Even in the case that the background service is already stopped and restarted, It has no effect on this function.
The text was updated successfully, but these errors were encountered:
Suppose I have a method as below, which is executed in the background service:
void showLog() { print('test1'); }
During the debug app, I have to change to the following code:
void showLog() { print('test2'); }
Now I perform hot reload or hot restart and I see 'test1' in the console. Even in the case that the background service is already stopped and restarted, It has no effect on this function.
The text was updated successfully, but these errors were encountered: