notifyTextSearch static method

void notifyTextSearch(
  1. String textSearchString
)

Implementation

static void notifyTextSearch(String textSearchString) {
  if (!_validateEnvironment()) {
    return;
  }
  _channel.invokeMapMethod(
      "notifyTextSearch", {"textSearchString": textSearchString});
}