ReleasePacker constructor

ReleasePacker(
  1. String name,
  2. Version version,
  3. List<ReleasePackerFile> files, {
  4. List<ReleasePackerCommand>? prepareCommands,
  5. List<ReleasePackerCommand>? finalizeCommands,
  6. Map<String, String>? properties,
  7. Directory? configDirectory,
})

Implementation

ReleasePacker(
  this.name,
  this.version,
  this.files, {
  this.prepareCommands,
  this.finalizeCommands,
  Map<String, String>? properties,
  this.configDirectory,
}) : properties = properties ?? <String, String>{};