hangup static method

Future<void> hangup(
  1. String accountId
)

Hangup call for a specific account

Implementation

static Future<void> hangup(String accountId) async {
  await MultiSipService.hangup(accountId);
}