isWritable function

bool isWritable(
  1. String path
)

checks if the passed path (a file or directory) is writable by the user that owns this process

Implementation

bool isWritable(String path) => _Is().isWritable(path);