initILib method
void
initILib()
Implementation
void initILib() {
try {
if (_iLibPrepared == false) {
_jsEvalResult = _jsRuntime.evaluate(_loadJSResult);
_iLibPrepared = true;
}
} on PlatformException catch (e) {
debugPrint('Failed to init js engine: ${e.details}');
rethrow;
}
}