webkitRelativePath property

String? webkitRelativePath

Implementation

String? get webkitRelativePath {
  try {
    return _delegate.webkitRelativePath;
  } catch (e) {
    // Throws a JS error if the `webkitdirectory` attribute was not set on
    // the input element, but this is accessed.
    // See: https://developer.mozilla.org/en-US/docs/Web/API/File/webkitRelativePath
    return null;
  }
}