SwiftOptions constructor

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

Creates a SwiftOptions object

Implementation

const SwiftOptions({
  this.copyrightHeader,
  this.fileSpecificClassNameComponent,
  this.errorClassName,
  this.includeErrorClass = true,
});