fileURLWithPath$1 static method
fileURLWithPath:isDirectory:
Implementation
static NSURL fileURLWithPath$1(NSString path, {required bool isDirectory}) {
objc.checkOsVersionInternal(
'NSURL.fileURLWithPath:isDirectory:',
iOS: (false, (2, 0, 0)),
macOS: (false, (10, 5, 0)),
);
final $ret = _objc_msgSend_17amj0z(
_class_NSURL,
_sel_fileURLWithPath_isDirectory_,
path.ref.pointer,
isDirectory,
);
return NSURL.fromPointer($ret, retain: true, release: true);
}