getLastErrorMessage method
Implementation
String getLastErrorMessage() {
final nativeError = _readNativeLastError();
if (nativeError.isNotEmpty && nativeError != 'No error') {
return nativeError;
}
return _lastLocalError;
}
String getLastErrorMessage() {
final nativeError = _readNativeLastError();
if (nativeError.isNotEmpty && nativeError != 'No error') {
return nativeError;
}
return _lastLocalError;
}