humanReadableErrors function

String humanReadableErrors(
  1. String error
)

Implementation

String humanReadableErrors(String error) {
  final statusz = error.split("Source stack").first;
  return statusz.contains("SocketException")
      ? "Error: No network connection"
      : statusz;
}