speak method

Future speak(
  1. String text
)

Future which invokes the platform specific method for speaking

Implementation

Future<dynamic> speak(String text) async =>
    await _channel.invokeMethod('speak', text);