inputStreamWithFileAtPath static method
inputStreamWithFileAtPath:
Implementation
static NSInputStream? inputStreamWithFileAtPath(NSString path) {
final $ret = _objc_msgSend_1sotr3r(
_class_NSInputStream,
_sel_inputStreamWithFileAtPath_,
path.ref.pointer,
);
return $ret.address == 0
? null
: NSInputStream.fromPointer($ret, retain: true, release: true);
}