setBotId static method

Future<bool> setBotId(
  1. String botId
)

Implementation

static Future<bool> setBotId(String botId) async {
  bool isBotIdAssigned =
      await _channel.invokeMethod('setBotId', {"botId": botId});
  return isBotIdAssigned;
}