defaultGeneratorConfig function
Returns a WitGeneratorConfig with the default configuration
Implementation
WitGeneratorConfig defaultGeneratorConfig({
required WitGeneratorInput inputs,
}) {
return WitGeneratorConfig(
inputs: inputs,
jsonSerialization: true,
copyWith_: true,
equalityAndHashCode: true,
toString_: true,
generateDocs: true,
useNullForOption: true,
requiredOption: false,
int64Type: Int64TypeConfig.bigInt,
typedNumberLists: true,
asyncWorker: false,
sameClassUnion: true,
);
}