makeOutboundCall static method

Future<void> makeOutboundCall(
  1. String number,
  2. String callerId
)

Implementation

static Future<void> makeOutboundCall(String number, String callerId) async {
  await _channel.invokeMethod(
      'makeOutboundCall', {'number': number, 'callerId': callerId});
}