audioResponseFormatDeliveryToString function
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',
};
}