nativeEval method

  1. @override
Future nativeEval(
  1. String equation
)
override

The method channel used to interact with the native platform.

Implementation

@override
Future<dynamic> nativeEval(String equation) {
  return _channel.invokeMethod(
    'nativeEval',
    {'equation': equation},
  ).then((result) => result);
}