reactionRecords method

FfiListReactionRecord? reactionRecords(
  1. String key
)

the details that users reacted using this emote key in this message

Implementation

FfiListReactionRecord? reactionRecords(
  String key,
) {
  final tmp1 = key;
  var tmp0 = 0;
  var tmp2 = 0;
  var tmp3 = 0;
  var tmp4 = 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;
  final tmp5 = _api._roomEventItemReactionRecords(
    tmp0,
    tmp2,
    tmp3,
    tmp4,
  );
  final tmp7 = tmp5.arg0;
  final tmp8 = tmp5.arg1;
  if (tmp7 == 0) {
    return null;
  }
  final ffi.Pointer<ffi.Void> tmp8_0 = ffi.Pointer.fromAddress(tmp8);
  final tmp8_1 = _Box(_api, tmp8_0, "drop_box_FfiListReactionRecord");
  tmp8_1._finalizer = _api._registerFinalizer(tmp8_1);
  final tmp9 = FfiListReactionRecord._(_api, tmp8_1);
  final tmp6 = tmp9;
  return tmp6;
}