read abstract method

Stream<Migration> read({
  1. String? afterVersion,
})

Streams the migrations ordered by version, ascending. If afterVersion is passed, all migrations with versions less or equal to it will be skipped.

Implementation

Stream<Migration> read({String? afterVersion});