currentProgress static method
currentProgress
Implementation
static NSProgress? currentProgress() {
objc.checkOsVersionInternal(
'NSProgress.currentProgress',
iOS: (false, (7, 0, 0)),
macOS: (false, (10, 9, 0)),
);
final $ret = _objc_msgSend_151sglz(_class_NSProgress, _sel_currentProgress);
return $ret.address == 0
? null
: NSProgress.fromPointer($ret, retain: true, release: true);
}