redactContent method

Future<EventId> redactContent(
  1. String eventId,
  2. String? reason
)

redact an event from this room reason - The reason for the event being reported (optional). it’s the callers job to ensure the person has the privileges to redact that content.

Implementation

Future<EventId> redactContent(
  String eventId,
  String? reason,
) {
  final tmp1 = eventId;
  final tmp5 = reason;
  var tmp0 = 0;
  var tmp2 = 0;
  var tmp3 = 0;
  var tmp4 = 0;
  var tmp6 = 0;
  var tmp8 = 0;
  var tmp9 = 0;
  var tmp10 = 0;
  tmp0 = _box.borrow();
  final tmp1_0 = utf8.encode(tmp1);
  tmp3 = tmp1_0.length;

  final ffi.Pointer<ffi.Uint8> tmp2_0 = _api.__allocate(tmp3 * 1, 1);
  final Uint8List tmp2_1 = tmp2_0.asTypedList(tmp3);
  tmp2_1.setAll(0, tmp1_0);
  tmp2 = tmp2_0.address;
  tmp4 = tmp3;
  if (tmp5 == null) {
    tmp6 = 0;
  } else {
    tmp6 = 1;
    final tmp7 = tmp5;
    final tmp7_0 = utf8.encode(tmp7);
    tmp9 = tmp7_0.length;

    final ffi.Pointer<ffi.Uint8> tmp8_0 = _api.__allocate(tmp9 * 1, 1);
    final Uint8List tmp8_1 = tmp8_0.asTypedList(tmp9);
    tmp8_1.setAll(0, tmp7_0);
    tmp8 = tmp8_0.address;
    tmp10 = tmp9;
  }
  final tmp11 = _api._spaceRedactContent(
    tmp0,
    tmp2,
    tmp3,
    tmp4,
    tmp6,
    tmp8,
    tmp9,
    tmp10,
  );
  final tmp13 = tmp11;
  final ffi.Pointer<ffi.Void> tmp13_0 = ffi.Pointer.fromAddress(tmp13);
  final tmp13_1 = _Box(_api, tmp13_0, "__Space_redact_content_future_drop");
  tmp13_1._finalizer = _api._registerFinalizer(tmp13_1);
  final tmp12 = _nativeFuture(tmp13_1, _api.__spaceRedactContentFuturePoll);
  return tmp12;
}