tarConverterWith function

Converter<SynchronousTarEntry, List<int>> tarConverterWith({
  1. OutputFormat format = OutputFormat.pax,
})

A synchronous encoder for in-memory tar files, with custom encoding options.

For more information on how to use the converter, see tarConverter.

Implementation

Converter<SynchronousTarEntry, List<int>> tarConverterWith(
    {OutputFormat format = OutputFormat.pax}) {
  return _SynchronousTarConverter(format);
}