setSpeechRate method

Future setSpeechRate(
  1. double rate
)

Future which invokes the platform specific method for setSpeechRate Allowed values are in the range from 0.0 (slowest) to 1.0 (fastest)

Implementation

Future<dynamic> setSpeechRate(double rate) async =>
    await _channel.invokeMethod('setSpeechRate', rate);