listLsps method
See BreezServices::list_lsps
Implementation
Future<List<LspInformation>> listLsps({dynamic hint}) {
return _platform.executeNormal(FlutterRustBridgeTask(
callFfi: (port_) => _platform.inner.wire_list_lsps(port_),
parseSuccessData: _wire2api_list_lsp_information,
parseErrorData: _wire2api_FrbAnyhowException,
constMeta: kListLspsConstMeta,
argValues: [],
hint: hint,
));
}