listGroupTMRTemporaryKeysAsync method

Future<SealdListedGroupTMRTemporaryKey> listGroupTMRTemporaryKeysAsync(
  1. String groupId, {
  2. int page = 1,
  3. bool all = false,
})

List group TMR temporary keys.

groupId The Id of the group for which to list TMR keys. page Page number to fetch. all Should list all pages after page. Returns a SealdListedGroupTMRTemporaryKey instance holding the found temporary keys.

Implementation

Future<SealdListedGroupTMRTemporaryKey> listGroupTMRTemporaryKeysAsync(
    String groupId,
    {int page = 1,
    bool all = false}) {
  return compute(
      (Map<String, dynamic> args) => listGroupTMRTemporaryKeys(
          args["groupId"],
          page: args["page"],
          all: args["all"]),
      {"groupId": groupId, "page": page, "all": all});
}