modelPath property
Path to the YOLO model file. This can be:
- An asset path (e.g., 'assets/models/yolo11n.tflite')
- An absolute file path (e.g., '/data/user/0/com.example.app/files/models/yolo11n.tflite')
- An internal storage reference (e.g., 'internal://models/yolo11n.tflite')
The 'internal://' prefix will be resolved to the app's internal storage directory.
Implementation
final String modelPath;