getRefAbsPath method

String? getRefAbsPath(
  1. String ref
)

Implementation

String? getRefAbsPath(String ref) {
  String entityPath = '${folderPath.strip('/')}/$ref';
  FileSystemEntity? entity = _entity(entityPath);
  if (entity == null) return null;

  if (!_containFile(entityPath)) return null;
  return entity.path;
}