listRefundables method

Future<List<SwapInfo>> listRefundables({
  1. dynamic hint,
})
override

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,
  ));
}