onBotCustomInfoCallback method

Stream onBotCustomInfoCallback ()

listen bot custom info

Implementation

Stream<dynamic> onBotCustomInfoCallback() {
  if (_onBotCustomInfoCallback == null) {
    _onBotCustomInfoCallback =
        _eventChannel.receiveBroadcastStream('onBotCustomInfoCallback');
  }
  return _onBotCustomInfoCallback;
}