hangup static method

Future<void> hangup(
  1. String callId
)

Hangup the call.

Param callId the received call id.

Implementation

static Future<void> hangup(String callId) {
  return _impl.hangup(callId);
}