dataWithContentsOfFile static method
dataWithContentsOfFile:
Implementation
static NSData? dataWithContentsOfFile(NSString path) {
final $ret = _objc_msgSend_1sotr3r(
_class_NSData,
_sel_dataWithContentsOfFile_,
path.ref.pointer,
);
return $ret.address == 0
? null
: NSData.fromPointer($ret, retain: true, release: true);
}