TArchiveFile.fromFile constructor

TArchiveFile.fromFile(
  1. String path
)

Implementation

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