withdrawSign method

  1. @override
void withdrawSign({
  1. required Withdraw that,
  2. required ZkLinkSigner zkLinkSigner,
  3. dynamic hint,
})
override

Implementation

@override
void withdrawSign(
    {required Withdraw that,
    required ZkLinkSigner zkLinkSigner,
    dynamic hint}) {
  return handler.executeSync(SyncTask(
    callFfi: () {
      var arg0 =
          cst_encode_Auto_RefMut_RustOpaque_flutter_rust_bridgefor_generatedrust_asyncRwLockWithdraw(
              that);
      var arg1 =
          cst_encode_Auto_Owned_RustOpaque_flutter_rust_bridgefor_generatedrust_asyncRwLockZkLinkSigner(
              zkLinkSigner);
      return wire.wire_Withdraw_sign(arg0, arg1);
    },
    codec: DcoCodec(
      decodeSuccessData: dco_decode_unit,
      decodeErrorData: dco_decode_AnyhowException,
    ),
    constMeta: kWithdrawSignConstMeta,
    argValues: [that, zkLinkSigner],
    apiImpl: this,
    hint: hint,
  ));
}