EVSearchInterface constructor

EVSearchInterface(
  1. TaskHandle searchLambda(
    1. List<String>,
    2. EVSearchCallback
    )
)

Provides the abstract class for the EVSearchEngine.

Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

Implementation

factory EVSearchInterface(
  TaskHandle Function(List<String>, EVSearchCallback) searchLambda,

) => EVSearchInterface$Lambdas(
  searchLambda,

);