NSData.fromPointer constructor

NSData.fromPointer(
  1. Pointer<Void> ptr
)

Implementation

NSData.fromPointer(Pointer<Void> ptr) : super.fromPointer(ptr) {
  bytes = performSync(SEL('bytes'), decodeRetVal: false);
  lengthInBytes = performSync(SEL('length'));
}