GenerateModel constructor

const GenerateModel({
  1. String? className,
  2. Set fields = const {('id', 'String?')},
  3. bool shouldInherit = false,
  4. String? inheritanceConstructor,
  5. String keyStringCase = 'CAMEL_CASE',
})

Implementation

const GenerateModel({
  this.className,
  this.fields = const {('id', 'String?')},
  this.shouldInherit = false,
  this.inheritanceConstructor,
  this.keyStringCase = 'CAMEL_CASE',
});