history method

  1. @override
Future<List<CommerceLicense>?> history(
  1. String instId, {
  2. Context? ctx,
})
override

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

Implementation

@override
Future<List<CommerceLicense>?> history(String instId, {Context? ctx}) async {
  return await _h.invoke(this, _methods['history']!, [instId], ctx);
}