startChat static method

Future<Null> startChat(
  1. String question
)

Automatically attempts to starts a chat using the text provided in question as the question.

Implementation

static Future<Null> startChat(String question) async {
  await _channel.invokeMethod('startChat', question);
}