Model constructor

Model(
  1. String name,
  2. InputFile inputFile, {
  3. List<Variable> fields = const [],
  4. bool isEnum = false,
  5. List<String> codeComments = const <String>[],
})

Implementation

Model(
  this.name,
  this.inputFile, {
  this.fields = const [],
  this.isEnum = false,
  this.codeComments = const <String>[],
});