I'm working with Flutter and Dart.
In my project, under /lib directory, I have some dart files and a dart file for every "screen" (or "page", or "activity").
I would need to obtain programmatically the name of the dart file.
If I do the file name request in screen_edituser.dart I would need to obtain "screen_edituser" in a variable.
I tried to use Platform.script but I obtain always "main.dart" whatever the dart file name of the project is.