Dart Documentationchrome.devtoolsEvalResult

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);
}

Properties

bool isException #

bool isException

Map<String, dynamic> result #

Map<String, dynamic> result