initWithContentsOfMarkdownFileAtURL method
NSAttributedString?
initWithContentsOfMarkdownFileAtURL(
- NSURL markdownFile, {
- NSAttributedStringMarkdownParsingOptions? options,
- NSURL? baseURL,
- required Pointer<
Pointer< error,ObjCObject> >
initWithContentsOfMarkdownFileAtURL:options:baseURL:error:
Implementation
NSAttributedString? initWithContentsOfMarkdownFileAtURL(objc.NSURL markdownFile, {NSAttributedStringMarkdownParsingOptions? options,objc.NSURL? baseURL,required ffi.Pointer<ffi.Pointer<objc.ObjCObject>> error}) {
objc.checkOsVersionInternal('NSAttributedString.initWithContentsOfMarkdownFileAtURL:options:baseURL:error:', iOS: (false, (15, 0, 0)), macOS: (false, (12, 0, 0)));
final _ret = _objc_msgSend_1k0ezzm(this.ref.retainAndReturnPointer(), _sel_initWithContentsOfMarkdownFileAtURL_options_baseURL_error_, markdownFile.ref.pointer, options?.ref.pointer ?? ffi.nullptr, baseURL?.ref.pointer ?? ffi.nullptr, error);
return _ret.address == 0 ? null : NSAttributedString.castFromPointer(_ret, retain: false, release: true);
}