hangUp method

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

Terminates an active call.

Parameters:

  • sessionId: The session ID of the call to terminate

Returns 0 on success, negative error code on failure.

Implementation

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