history method

  1. @MPI(name: "mesh.license.history")
Future<List<CommerceLicense>?> history(
  1. String instId, {
  2. Context? ctx,
})

History list the sign license in history, the latest is the first index.

Implementation

@MPI(name: "mesh.license.history")
Future<List<CommerceLicense>?> history(String instId, {Context? ctx}) {
  throw UnimplementedError('history() has not been implemented.');
}