TarHeader constructor
const
TarHeader({
- required TarEntryType entryType,
- required Uint8List bytes,
- required Uint8List pathBytes,
- String? path,
- Uint8List? linkNameBytes,
- String? linkName,
- int? mode,
- BigInt? uid,
- BigInt? gid,
- BigInt? mtime,
- Uint8List? usernameBytes,
- String? username,
- Uint8List? groupnameBytes,
- String? groupname,
- int? deviceMajor,
- int? deviceMinor,
- int? cksum,
- required List<
String> formatErrors,
Implementation
const TarHeader({
required this.entryType,
required this.bytes,
required this.pathBytes,
this.path,
this.linkNameBytes,
this.linkName,
this.mode,
this.uid,
this.gid,
this.mtime,
this.usernameBytes,
this.username,
this.groupnameBytes,
this.groupname,
this.deviceMajor,
this.deviceMinor,
this.cksum,
required this.formatErrors,
});