audioResponseFormatDeliveryToString function

String audioResponseFormatDeliveryToString(
  1. AudioResponseFormatDelivery value
)

Converts an AudioResponseFormatDelivery enum value to a string.

Implementation

String audioResponseFormatDeliveryToString(AudioResponseFormatDelivery value) {
  return switch (value) {
    AudioResponseFormatDelivery.inline => 'INLINE',
    AudioResponseFormatDelivery.uri => 'URI',
    AudioResponseFormatDelivery.unspecified => 'DELIVERY_UNSPECIFIED',
  };
}