deleteGroupTMRTemporaryKeyAsync method
Delete a group TMR temporary key.
groupId
The Id of the group for which to delete a TMR key.
temporaryKeyId
The Id of the temporary key to delete.
Implementation
Future<void> deleteGroupTMRTemporaryKeyAsync(
String groupId, String temporaryKeyId) {
return compute(
(Map<String, dynamic> args) =>
deleteGroupTMRTemporaryKey(args["groupId"], args["temporaryKeyId"]),
{"groupId": groupId, "temporaryKeyId": temporaryKeyId});
}