makeCall static method

Future<void> makeCall({
  1. required String accountId,
  2. required String target,
})

Make a call from a specific account

Implementation

static Future<void> makeCall({
  required String accountId,
  required String target,
}) async {
  await MultiSipService.makeCall(accountId: accountId, target: target);
}