dataWithContentsOfFile$1 static method
NSMutableData?
dataWithContentsOfFile$1(
- NSString path, {
- required int options,
- required Pointer<
Pointer< error,ObjCObjectImpl> >
override
dataWithContentsOfFile:options:error:
Implementation
static NSMutableData? dataWithContentsOfFile$1(
NSString path, {
required int options,
required ffi.Pointer<ffi.Pointer<objc.ObjCObjectImpl>> error,
}) {
final $ret = _objc_msgSend_8321cp(
_class_NSMutableData,
_sel_dataWithContentsOfFile_options_error_,
path.ref.pointer,
options,
error,
);
return $ret.address == 0
? null
: NSMutableData.fromPointer($ret, retain: true, release: true);
}