startChatbot static method

Future<bool> startChatbot()

Implementation

static Future<bool> startChatbot() async {
  bool isBotStarted = await _channel.invokeMethod('startChatbot');
  return isBotStarted;
}