useConfigureOptions method

TextToSpeechClientBuilder useConfigureOptions(
  1. void configure(
    1. TextToSpeechOptions options
    )
)

Adds a callback that configures the TextToSpeechOptions passed to each request.

Implementation

TextToSpeechClientBuilder useConfigureOptions(
        void Function(TextToSpeechOptions options) configure) =>
    use(
      (inner) =>
          ConfigureOptionsTextToSpeechClient(inner, configure: configure),
    );