hold method

Future<int> hold({
  1. required int sessionId,
})

Puts a call on hold.

Parameters:

  • sessionId: The session ID of the call to hold

Returns 0 on success, negative error code on failure.

Implementation

Future<int> hold({required int sessionId}) async {
  throw UnimplementedError('hold has not been implemented.');
}