JavaOptions constructor

const JavaOptions({
  1. String? className,
  2. String? package,
  3. Iterable<String>? copyrightHeader,
  4. bool? useGeneratedAnnotation,
})

Creates a JavaOptions object

Implementation

const JavaOptions({
  this.className,
  this.package,
  this.copyrightHeader,
  this.useGeneratedAnnotation,
});