1234567891011121314151617181920 |
- import 'dart:core';
- import 'package:fis_jsonrpc/client_base.dart';
- class StorageService extends JsonRpcClientBase {
- StorageService(
- String host, {
- String serviceName = "IStorageService",
- Map<String, String>? headers,
- int? timeout,
- }) : super(
- host,
- serviceName,
- headers: headers,
- timeout: timeout,
- );
- }
|