reject method

Future<String?> reject({
  1. required String target,
})

Implementation

Future<String?> reject({required String target}) async {
  if (!_hasSigner) {
    throw Exception(PushAPI.ensureSignerMessage());
  }
  return PUSH_CHAT.reject(
    senderAddress: target,
    account: _account,
    pgpPrivateKey: _decryptedPgpPvtKey,
    signer: _signer,
  );
}