call method

Future<bool> call(
  1. String phoneNumber
)

Implementation

Future<bool> call(String phoneNumber) async {
  return await _methodChannel.invokeMethod('call', {"recipient": phoneNumber});
}