makeCall method

Future<Response> makeCall(
  1. CallOptions options
)

Implementation

Future<Response> makeCall(CallOptions options) async {
  final result = await core.makeRequest("Twilio/makeCall", options.toJson());

  return Response.fromJson(result!);
}