NSOrderedCollectionDifference.as constructor

NSOrderedCollectionDifference.as(
  1. ObjCObject other
)

Constructs a NSOrderedCollectionDifference that points to the same underlying object as other.

Implementation

NSOrderedCollectionDifference.as(objc.ObjCObject other) : object$ = other {
  objc.checkOsVersionInternal(
    'NSOrderedCollectionDifference',
    iOS: (false, (13, 0, 0)),
    macOS: (false, (10, 15, 0)),
  );
  assert(isA(object$));
}