stringWithCString_length_ static method

NSObject? stringWithCString_length_(
  1. ThermionDartTexture1 _lib,
  2. Pointer<Char> bytes,
  3. int length
)
override

Implementation

static NSObject? stringWithCString_length_(
    ThermionDartTexture1 _lib, ffi.Pointer<ffi.Char> bytes, int length) {
  final _ret = _lib._objc_msgSend_383(_lib._class_NSMutableString1,
      _lib._sel_stringWithCString_length_1, bytes, length);
  return _ret.address == 0
      ? null
      : NSObject._(_ret, _lib, retain: true, release: true);
}