chmod method

int chmod(
  1. String pathname,
  2. int mode
)

Change permissions of a file. (Stubbed, as dart:io lacks direct synchronous chmod without invoking shell).

Implementation

int chmod(String pathname, int mode) {
  return 0; // Stub
}