eval abstract method

Future eval(
  1. String expression
)

Evaluate an expression and return the result.

This is the default action for non-command input. Supports await for async expressions.

Implementation

Future<dynamic> eval(String expression);