load method
dynamic
load()
Load images.
Implementation
load() {
if (_webTwain != null) {
_webTwain!.LoadImageEx("", 5, allowInterop(() {
print("Successful!");
}), allowInterop((errorCode, errorString) {
alert(errorString);
}));
}
}