SafeResolvePathResult constructor

SafeResolvePathResult({
  1. required String resolvedPath,
  2. required bool isSymlink,
  3. required bool isCanonical,
})

Implementation

SafeResolvePathResult({
  required this.resolvedPath,
  required this.isSymlink,
  required this.isCanonical,
});