ConstructMaker constructor

const ConstructMaker({
  1. required String package,
  2. required bool isServer,
  3. required bool isBuild,
  4. required String name,
  5. required Construct maker(
    1. ConstructOptions
    ),
  6. required bool hasNameConflict,
  7. required bool optIn,
})

Implementation

const ConstructMaker({
  required this.package,
  required this.isServer,
  required this.isBuild,
  required this.name,
  required this.maker,
  required this.hasNameConflict,
  required this.optIn,
});