strerror function

String? strerror(
  1. int errnum
)

Returns a string describing the specified error number.

Implementation

String? strerror(int errnum) => platform.strerror(errnum);