CppOptions constructor

const CppOptions({
  1. String? headerIncludePath,
  2. String? namespace,
  3. Iterable<String>? copyrightHeader,
  4. String? headerOutPath,
})

Creates a CppOptions object

Implementation

const CppOptions({
  this.headerIncludePath,
  this.namespace,
  this.copyrightHeader,
  this.headerOutPath,
});