Assume I have some Type instances:
final strType = String;
final intType = int;
I want to initialize instances of the Types, for example, preferably,
final myString = strType(); // myString is String()
or
final myInt = new intType(); // myInt is int()
However, the compiler raised an error of strType isn't a function.
Is it possible to initialize an instance of a Type in Dart?