FindInteractionController constructor
- void onFindResultReceived(
- PlatformFindInteractionController controller,
- int activeMatchOrdinal,
- int numberOfMatches,
- bool isDoneCounting,
This class represents the controller used by the WebView to add
text-finding capabilities, such as the "Find on page" feature.
Implementation
FindInteractionController({
void Function(
PlatformFindInteractionController controller,
int activeMatchOrdinal,
int numberOfMatches,
bool isDoneCounting,
)?
onFindResultReceived,
}) : this.fromPlatformCreationParams(
params: PlatformFindInteractionControllerCreationParams(
onFindResultReceived: onFindResultReceived,
),
);