decryptZapEvent method

Future<Map> decryptZapEvent({
  1. required String eventJson,
  2. required String currentUser,
  3. String? id,
})

Implementation

Future<Map<dynamic, dynamic>> decryptZapEvent({
  required String eventJson,
  required String currentUser,
  String? id,
}) {
  return _invoke({
    'type': 'decrypt_zap_event',
    'uri_data': eventJson,
    'current_user': currentUser,
    'id': id,
  });
}