isHighConfidence property

bool get isHighConfidence

Checks if the prediction has high confidence.

Returns true if confidence is 0.7 or higher, indicating a reliable identification that can be presented to users with confidence.

Implementation

bool get isHighConfidence => confidence >= 0.7;