redactLike method

Future<EventId> redactLike(
  1. String? reason,
  2. String? txnId
)

remove the like

Implementation

Future<EventId> redactLike(
  String? reason,
  String? txnId,
) {
  final tmp1 = reason;
  final tmp7 = txnId;
  var tmp0 = 0;
  var tmp2 = 0;
  var tmp4 = 0;
  var tmp5 = 0;
  var tmp6 = 0;
  var tmp8 = 0;
  var tmp10 = 0;
  var tmp11 = 0;
  var tmp12 = 0;
  tmp0 = _box.borrow();
  if (tmp1 == null) {
    tmp2 = 0;
  } else {
    tmp2 = 1;
    final tmp3 = tmp1;
    final tmp3_0 = utf8.encode(tmp3);
    tmp5 = tmp3_0.length;

    final ffi.Pointer<ffi.Uint8> tmp4_0 = _api.__allocate(tmp5 * 1, 1);
    final Uint8List tmp4_1 = tmp4_0.asTypedList(tmp5);
    tmp4_1.setAll(0, tmp3_0);
    tmp4 = tmp4_0.address;
    tmp6 = tmp5;
  }
  if (tmp7 == null) {
    tmp8 = 0;
  } else {
    tmp8 = 1;
    final tmp9 = tmp7;
    final tmp9_0 = utf8.encode(tmp9);
    tmp11 = tmp9_0.length;

    final ffi.Pointer<ffi.Uint8> tmp10_0 = _api.__allocate(tmp11 * 1, 1);
    final Uint8List tmp10_1 = tmp10_0.asTypedList(tmp11);
    tmp10_1.setAll(0, tmp9_0);
    tmp10 = tmp10_0.address;
    tmp12 = tmp11;
  }
  final tmp13 = _api._reactionManagerRedactLike(
    tmp0,
    tmp2,
    tmp4,
    tmp5,
    tmp6,
    tmp8,
    tmp10,
    tmp11,
    tmp12,
  );
  final tmp15 = tmp13;
  final ffi.Pointer<ffi.Void> tmp15_0 = ffi.Pointer.fromAddress(tmp15);
  final tmp15_1 =
      _Box(_api, tmp15_0, "__ReactionManager_redact_like_future_drop");
  tmp15_1._finalizer = _api._registerFinalizer(tmp15_1);
  final tmp14 =
      _nativeFuture(tmp15_1, _api.__reactionManagerRedactLikeFuturePoll);
  return tmp14;
}