withdrawToJson method
String
withdrawToJson(
{ - required Withdraw that,
- dynamic hint,
})
override
Implementation
@override
String withdrawToJson({required Withdraw that, dynamic hint}) {
return handler.executeSync(SyncTask(
callFfi: () {
var arg0 =
cst_encode_Auto_Ref_RustOpaque_flutter_rust_bridgefor_generatedrust_asyncRwLockWithdraw(
that);
return wire.wire_Withdraw_to_json(arg0);
},
codec: DcoCodec(
decodeSuccessData: dco_decode_String,
decodeErrorData: dco_decode_AnyhowException,
),
constMeta: kWithdrawToJsonConstMeta,
argValues: [that],
apiImpl: this,
hint: hint,
));
}