twilioEnqueueAudio method

Future<void> twilioEnqueueAudio()

Implementation

Future<void> twilioEnqueueAudio() async {
  final response = await _client.post(
    Uri.https(
      authority,
      '/v1/voice/twilio/enqueue-audio/',
    ),
  );

  OctopusEnergyApiClientException.checkIsSuccessStatusCode(response);
}