getModelFilePath static method
Gets the full file path for a model file with Android path correction
Implementation
static Future<String> getModelFilePath(String filename) async {
final directory = await getApplicationDocumentsDirectory();
return getCorrectedPath(directory.path, filename);
}