杏聆荟Flutter客户端 JSON-RPC Client库
guanxinyi c56994e88f 1、json rpc | пре 4 месеци | |
---|---|---|
.vs | пре 9 месеци | |
.vscode | пре 9 месеци | |
lib | пре 4 месеци | |
test | пре 3 година | |
.gitignore | пре 3 година | |
.metadata | пре 3 година | |
CHANGELOG.md | пре 3 година | |
LICENSE | пре 3 година | |
README.md | пре 3 година | |
pubspec.yaml | пре 9 месеци |
A JSON-RPC client package project for Flyinsono application.
// Create a proxy instance
final rpc = JsonRpcProxy();
// Fetch a api
try {
final String result = await rpc.config.getConfigAsync("service", "section", "settingNode", "defaultValue");
print(result);
} on JsonRpcException catch (e) {
print("Fetch fail. code: ${e.code}, msg: ${e.message}");
} catch (e) {
logger.e("Fetch error.", e);
}