EvalResult class
The return type for eval.
class EvalResult {
 static EvalResult _create(result, isException) {
   return new EvalResult._(mapify(result), isException);
 }
 Map<String, dynamic> result;
 bool isException;
 EvalResult._(this.result, this.isException);
}