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