deposit method

  1. @MPI(name: "mesh.cipher.deposit")
Future<String?> deposit(
  1. CipherObject rco, {
  2. Context? ctx,
})

Deposit cipher object deposit. 密态数据包(胶囊)归档到密态数据胶囊中心仓库.

Implementation

@MPI(name: "mesh.cipher.deposit")
Future<String?> deposit(CipherObject rco, {Context? ctx}) {
  throw UnimplementedError('deposit() has not been implemented.');
}