KotlinOptions constructor

const KotlinOptions({
  1. String? package,
  2. Iterable<String>? copyrightHeader,
  3. String? errorClassName,
  4. bool includeErrorClass = true,
})

Creates a KotlinOptions object

Implementation

const KotlinOptions({
  this.package,
  this.copyrightHeader,
  this.errorClassName,
  this.includeErrorClass = true,
});