File constructor

File(
  1. String path
)

Файл в файловой системе.

  • Parameter path: Путь к файлу.

Implementation

factory File(
  String path
) {
  var _a0 = path._copyFromDartTo_CString();
  _CFile res = _CFile_C_createWith_CString(_a0);
  _a0._releaseIntermediate();
  return File._create(res._impl);
}