Converts an OSError object to a string representation.
String toString() { StringBuffer sb = new StringBuffer(); sb.write("OS Error"); if (message.isNotEmpty) { sb..write(": ")..write(message); if (errorCode != noErrorCode) { sb..write(", errno = ")..write(errorCode.toString()); } } else if (errorCode != noErrorCode) { sb..write(": errno = ")..write(errorCode.toString()); } return sb.toString(); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-io/OSError/toString.html