receiptTs method

int? receiptTs(
  1. String userId
)

the details that users read this message

Implementation

int? receiptTs(
  String userId,
) {
  final tmp1 = userId;
  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._roomEventItemReceiptTs(
    tmp0,
    tmp2,
    tmp3,
    tmp4,
  );
  final tmp7 = tmp5.arg0;
  final tmp8 = tmp5.arg1;
  if (tmp7 == 0) {
    return null;
  }
  final tmp6 = tmp8;
  return tmp6;
}