Get Variables name by it's value in Dart Lang
问题 For Example, I have a variable like this. var fooBar = 12; I want a something like this in Dart lang. print_var_name(fooBar); which prints: fooBar How can I achieve that? Is this even possible? Thank you. 回答1: There is no such thing in Dart for the web or for Flutter. Reflection can do that, but reflection is only supported in the server VM because it hurts tree-shaking. You need to write code for that manually or use code generation where you need that. An example class SomeClass { String