stringWithCString_ static method

NSObject? stringWithCString_(
  1. ThermionDartTexture1 _lib,
  2. Pointer<Char> bytes
)
override

Implementation

static NSObject? stringWithCString_(
    ThermionDartTexture1 _lib, ffi.Pointer<ffi.Char> bytes) {
  final _ret = _lib._objc_msgSend_371(
      _lib._class_NSMutableString1, _lib._sel_stringWithCString_1, bytes);
  return _ret.address == 0
      ? null
      : NSObject._(_ret, _lib, retain: true, release: true);
}