findInteractionController property

FindInteractionController? findInteractionController

Represents the find interaction feature controller.

Implementation

FindInteractionController? get findInteractionController {
  final findInteractionControllerPlatform =
      platform.findInteractionController;
  if (findInteractionControllerPlatform == null) {
    return null;
  }
  return FindInteractionController.fromPlatform(
      platform: findInteractionControllerPlatform);
}