open function

int open(
  1. String file, {
  2. int? flags,
})

Implementation

int open(String file, {int? flags}) => platform.open(file, flags ?? O_RDONLY);