resetPassword method

Future<bool> resetPassword(
  1. String defaultHomeserverUrl,
  2. String sid,
  3. String clientSecret,
  4. String newVal,
)

Finish password reset without login

Implementation

Future<bool> resetPassword(
  String defaultHomeserverUrl,
  String sid,
  String clientSecret,
  String newVal,
) {
  final tmp0 = defaultHomeserverUrl;
  final tmp4 = sid;
  final tmp8 = clientSecret;
  final tmp12 = newVal;
  var tmp1 = 0;
  var tmp2 = 0;
  var tmp3 = 0;
  var tmp5 = 0;
  var tmp6 = 0;
  var tmp7 = 0;
  var tmp9 = 0;
  var tmp10 = 0;
  var tmp11 = 0;
  var tmp13 = 0;
  var tmp14 = 0;
  var tmp15 = 0;
  final tmp0_0 = utf8.encode(tmp0);
  tmp2 = tmp0_0.length;

  final ffi.Pointer<ffi.Uint8> tmp1_0 = this.__allocate(tmp2 * 1, 1);
  final Uint8List tmp1_1 = tmp1_0.asTypedList(tmp2);
  tmp1_1.setAll(0, tmp0_0);
  tmp1 = tmp1_0.address;
  tmp3 = tmp2;
  final tmp4_0 = utf8.encode(tmp4);
  tmp6 = tmp4_0.length;

  final ffi.Pointer<ffi.Uint8> tmp5_0 = this.__allocate(tmp6 * 1, 1);
  final Uint8List tmp5_1 = tmp5_0.asTypedList(tmp6);
  tmp5_1.setAll(0, tmp4_0);
  tmp5 = tmp5_0.address;
  tmp7 = tmp6;
  final tmp8_0 = utf8.encode(tmp8);
  tmp10 = tmp8_0.length;

  final ffi.Pointer<ffi.Uint8> tmp9_0 = this.__allocate(tmp10 * 1, 1);
  final Uint8List tmp9_1 = tmp9_0.asTypedList(tmp10);
  tmp9_1.setAll(0, tmp8_0);
  tmp9 = tmp9_0.address;
  tmp11 = tmp10;
  final tmp12_0 = utf8.encode(tmp12);
  tmp14 = tmp12_0.length;

  final ffi.Pointer<ffi.Uint8> tmp13_0 = this.__allocate(tmp14 * 1, 1);
  final Uint8List tmp13_1 = tmp13_0.asTypedList(tmp14);
  tmp13_1.setAll(0, tmp12_0);
  tmp13 = tmp13_0.address;
  tmp15 = tmp14;
  final tmp16 = _resetPassword(
    tmp1,
    tmp2,
    tmp3,
    tmp5,
    tmp6,
    tmp7,
    tmp9,
    tmp10,
    tmp11,
    tmp13,
    tmp14,
    tmp15,
  );
  final tmp18 = tmp16;
  final ffi.Pointer<ffi.Void> tmp18_0 = ffi.Pointer.fromAddress(tmp18);
  final tmp18_1 = _Box(this, tmp18_0, "__reset_password_future_drop");
  tmp18_1._finalizer = this._registerFinalizer(tmp18_1);
  final tmp17 = _nativeFuture(tmp18_1, this.__resetPasswordFuturePoll);
  return tmp17;
}