TarHeaderModel constructor

const TarHeaderModel({
  1. int? mode,
  2. BigInt? uid,
  3. BigInt? gid,
  4. BigInt? mtime,
  5. String? username,
  6. String? groupname,
  7. int? deviceMajor,
  8. int? deviceMinor,
})

Implementation

const TarHeaderModel({
  this.mode,
  this.uid,
  this.gid,
  this.mtime,
  this.username,
  this.groupname,
  this.deviceMajor,
  this.deviceMinor,
});