refund method
See BreezServices::refund
Implementation
Future<RefundResponse> refund({required RefundRequest req, dynamic hint}) {
var arg0 = _platform.api2wire_box_autoadd_refund_request(req);
return _platform.executeNormal(FlutterRustBridgeTask(
callFfi: (port_) => _platform.inner.wire_refund(port_, arg0),
parseSuccessData: _wire2api_refund_response,
parseErrorData: _wire2api_FrbAnyhowException,
constMeta: kRefundConstMeta,
argValues: [req],
hint: hint,
));
}