TArchiveFile.fromFile constructor
TArchiveFile.fromFile(
- String path
Implementation
factory TArchiveFile.fromFile(String path) {
final file = File(path);
return TArchiveFile(file.path.split('/').last, file.readAsBytesSync());
}