hangup method

Future<void> hangup(
  1. String callId
)

Implementation

Future<void> hangup(String callId) async {
  tools.log("ChatCallKitManagerImpl: hangup called, callId: $callId");
  await _chat.hangup(callId);
}