CodgenConfig constructor

const CodgenConfig({
  1. bool? toString,
  2. bool? eqHashCode,
  3. required bool nnbd,
})

Implementation

const CodgenConfig({
  bool? toString,
  bool? eqHashCode,
  required this.nnbd,
})   : genToString = toString ?? true,
      genEqHashCode = eqHashCode ?? true;