ImportOptions constructor

ImportOptions({
  1. String? input,
  2. String? domain,
  3. String? out,
  4. bool live = false,
  5. bool verify = true,
  6. bool json = false,
  7. bool help = false,
  8. String? apiKey,
})

Implementation

ImportOptions({
  this.input,
  this.domain,
  this.out,
  this.live = false,
  this.verify = true,
  this.json = false,
  this.help = false,
  this.apiKey,
});