ackSync method

Future ackSync(
  1. int nonce
)

Implementation

Future<dynamic> ackSync(int nonce) async {
  Response response = await _dio.post(
    '/v1/contacts/$nonce',
    options: options,
  );

  return response.data;
}