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