fileFor method Null safety
- SpeechPackage package,
- String path
Returns File for the path
within a package
Implementation
File fileFor(SpeechPackage package, String path) {
String packageDir = directoryFor(package);
return File('$packageDir/$path');
}