Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flet / testing / finder.py
Size: Mime:
from dataclasses import dataclass


@dataclass
class Finder:
    """
    Finder is used to search for controls by different criterias.
    """

    id: int
    """
    Internal finder ID - corresponds to a Finder instance on Dart side.
    """

    count: int
    """
    The number of controls found by this finder.
    """