listRefundables method
See BreezServices::list_refundables
Implementation
Future<List<SwapInfo>> listRefundables({dynamic hint}) {
return _platform.executeNormal(FlutterRustBridgeTask(
callFfi: (port_) => _platform.inner.wire_list_refundables(port_),
parseSuccessData: _wire2api_list_swap_info,
parseErrorData: _wire2api_FrbAnyhowException,
constMeta: kListRefundablesConstMeta,
argValues: [],
hint: hint,
));
}