setIncludeCalSync method

Future<bool> setIncludeCalSync(
  1. bool newValue
)

Set the value of include_cal_sync for this room

Implementation

Future<bool> setIncludeCalSync(
  bool newValue,
) {
  final tmp1 = newValue;
  var tmp0 = 0;
  var tmp2 = 0;
  tmp0 = _box.borrow();
  tmp2 = tmp1 ? 1 : 0;
  final tmp3 = _api._userRoomSettingsSetIncludeCalSync(
    tmp0,
    tmp2,
  );
  final tmp5 = tmp3;
  final ffi.Pointer<ffi.Void> tmp5_0 = ffi.Pointer.fromAddress(tmp5);
  final tmp5_1 = _Box(
      _api, tmp5_0, "__UserRoomSettings_set_include_cal_sync_future_drop");
  tmp5_1._finalizer = _api._registerFinalizer(tmp5_1);
  final tmp4 = _nativeFuture(
      tmp5_1, _api.__userRoomSettingsSetIncludeCalSyncFuturePoll);
  return tmp4;
}