Migratable constructor

const Migratable({
  1. required List<MigrationCommand> down,
  2. required List<MigrationCommand> up,
  3. required String version,
})

Annotation required by the generator for AOT discoverability. Decorates classes that extends Migration.

Implementation

const Migratable({
  required this.down,
  required this.up,
  required this.version,
});