fullPath method

Path fullPath([
  1. Path? p
])

Implementation

Path fullPath([Path? p]) => inheritFolder && p != null
    ? p.append(path + name)
    : Path.from(path + name);