setBotId method

Future<String> setBotId(
  1. String botId
)

Implementation

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