Skip to content

Instantly share code, notes, and snippets.

@mym0404
Created August 20, 2022 09:57
Show Gist options
  • Save mym0404/868cdd28cad4f30bd223e01e5d5c5589 to your computer and use it in GitHub Desktop.
Save mym0404/868cdd28cad4f30bd223e01e5d5c5589 to your computer and use it in GitHub Desktop.
import 'dart:isolate';
printIsolateName() {
print(Isolate.current.debugName);
}
void main() async {
printIsolateName(); // main
Future.delayed(Duration(seconds: 0)).then((_) {
printIsolateName(); // main
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment