loadModelFromFilePath method
By Azkadev before you transcribe please call this loadModelFromFilePath
Implementation
Future<bool> loadModelFromFilePath({
required final String filePath,
}) async {
final result = await loadModelFromFilePathRaw(
filePath: filePath,
);
return result["@type"] == "ok";
}