create method Null safety
- String tarPath
Implementation
void create(String tarPath) {
this.tarPath = tarPath;
_output = OutputFileStream(tarPath);
_encoder = TarEncoder();
_encoder.start(_output);
}
void create(String tarPath) {
this.tarPath = tarPath;
_output = OutputFileStream(tarPath);
_encoder = TarEncoder();
_encoder.start(_output);
}