JsonObjectModelGenerator constructor

JsonObjectModelGenerator(
  1. String name, {
  2. required String outputDirectory,
  3. bool allAttributesRequired = false,
})

Implementation

JsonObjectModelGenerator(this.name,
    {required this.outputDirectory, this.allAttributesRequired = false})
    : assert(name.isNotEmpty);