getMMIOinfo method

String getMMIOinfo()

Returns a string representation of the MMIO handle.

Implementation

String getMMIOinfo() {
  _checkStatus();
  var data = malloc<Int8>(bufferLen).cast<Utf8>();
  try {
    _checkError(_nativeMMIOinfo(_mmioHandle, data, bufferLen));
    return data.toDartString();
  } finally {
    malloc.free(data);
  }
}