setSilence method

Future setSilence(
  1. int timems
)

Future which invokes the platform specific method for setSilence 0 means start the utterance immediately. If the value is greater than zero a silence period in milliseconds is set according to the parameter Android supported only

Implementation

Future<dynamic> setSilence(int timems) async =>
    await _channel.invokeMethod('setSilence', timems);