|
@@ -1,14 +1,20 @@
|
|
-# fisjsonrpc
|
|
|
|
|
|
+# fis_jsonrpc
|
|
|
|
|
|
-A new Flutter package project.
|
|
|
|
|
|
+A JSON-RPC client package project for Flyinsono application.
|
|
|
|
|
|
-## Getting Started
|
|
|
|
|
|
+## Usage
|
|
|
|
|
|
-This project is a starting point for a Dart
|
|
|
|
-[package](https://flutter.dev/developing-packages/),
|
|
|
|
-a library module containing code that can be shared easily across
|
|
|
|
-multiple Flutter or Dart projects.
|
|
|
|
|
|
+```dart
|
|
|
|
+// Create a proxy instance
|
|
|
|
+final rpc = JsonRpcProxy();
|
|
|
|
|
|
-For help getting started with Flutter, view our
|
|
|
|
-[online documentation](https://flutter.dev/docs), which offers tutorials,
|
|
|
|
-samples, guidance on mobile development, and a full API reference.
|
|
|
|
|
|
+// 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);
|
|
|
|
+}
|
|
|
|
+```
|