listGroupTMRTemporaryKeysAsync method
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});
}