describeSync method

String describeSync()

Returns a short description without touching the file system.

Implementation

String describeSync() {
  if (_filePath != null) {
    return 'file(${_fileName(_filePath!)})';
  }
  return 'document(${identityHashCode(_document)})';
}