MigrationStep constructor

const MigrationStep({
  1. required int order,
  2. required StepType type,
  3. required String description,
  4. String? packageName,
  5. String? targetVersion,
  6. List<CodeChange>? codeChanges,
  7. String? command,
})

Implementation

const MigrationStep({
  required this.order,
  required this.type,
  required this.description,
  this.packageName,
  this.targetVersion,
  this.codeChanges,
  this.command,
});