GenerateDartModel constructor

const GenerateDartModel({
  1. String? className,
  2. Set? fields,
  3. bool? shouldInherit,
  4. String? inheritanceConstructor,
  5. String? keyStringCase,
  6. String? description,
})

Constructs a new instance of GenerateDartModel from optional and required parameters.

Implementation

const GenerateDartModel({
  this.className,
  this.fields,
  this.shouldInherit,
  this.inheritanceConstructor,
  this.keyStringCase,
  this.description,
});