getWriteTargetPath abstract method

Future<String> getWriteTargetPath(
  1. String filename
)

Gets the target path for storing a model file with given filename.

Returns the canonical write destination (no legacy probe). Writers must use this method so that files always land in the correct location and never accidentally migrate to the legacy Documents path.

Example: '/data/data/com.app/files/model.bin'

Implementation

Future<String> getWriteTargetPath(String filename);