What is the format of the “arguments” parameter to ClassMirror.newInstance()?
I'm perfectly willing to play with this until I get it right, but was hoping someone might give me a hint. The parameter is declared in the docs (gen-dartdocs/dart-mirrors/ClassMirror/newInstance.html) as InstanceMirror newInstance(Symbol constructorName, List positionalArguments, [Map<Symbol,dynamic> namedArguments]); There is a nice writeup on the format of positionalArguments and namedArguments in the docs. However, it is just a little on the abstract side of my current tolerance level. A decent discussion also exists at http://japhr.blogspot.com/2014/06/dart-factory-method-pattern.html But