write function

int write(
  1. int fd,
  2. List<int> buffer
)

Implementation

int write(int fd, List<int> buffer) => platform.write(fd, buffer);