CreateOptions constructor

const CreateOptions({
  1. required String kind,
  2. required String name,
  3. required String path,
  4. required bool force,
  5. required bool dryRun,
  6. required bool withTest,
  7. required List<FieldSpec> fields,
  8. required String? jsonSample,
})

Implementation

const CreateOptions({
  required this.kind,
  required this.name,
  required this.path,
  required this.force,
  required this.dryRun,
  required this.withTest,
  required this.fields,
  required this.jsonSample,
});