safeDecodeFull static method

String safeDecodeFull(
  1. String path
)

Implementation

static String safeDecodeFull(String path) {
  try {
    return Uri.decodeFull(path);
  } on FormatException {
    return path.split('/').map(safeDecodeUriComponent).join('/');
  }
}