storage.dart 346 B

1234567891011121314151617181920
  1. import 'dart:core';
  2. import 'package:fis_jsonrpc/client_base.dart';
  3. class StorageService extends JsonRpcClientBase {
  4. StorageService(
  5. String host, {
  6. String serviceName = "IStorageService",
  7. Map<String, String>? headers,
  8. int? timeout,
  9. }) : super(
  10. host,
  11. serviceName,
  12. headers: headers,
  13. timeout: timeout,
  14. );
  15. }