isCancellable property

bool get isCancellable

isCancellable

Implementation

bool get isCancellable {
  objc.checkOsVersionInternal(
    'NSProgress.isCancellable',
    iOS: (false, (7, 0, 0)),
    macOS: (false, (10, 9, 0)),
  );
  return _objc_msgSend_91o635(object$.ref.pointer, _sel_isCancellable);
}
set isCancellable (bool value)

setCancellable:

Implementation

set isCancellable(bool value) {
  objc.checkOsVersionInternal(
    'NSProgress.setCancellable:',
    iOS: (false, (7, 0, 0)),
    macOS: (false, (10, 9, 0)),
  );
  _objc_msgSend_1s56lr9(object$.ref.pointer, _sel_setCancellable_, value);
}